mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-31 09:37:15 +01:00
25 lines
718 B
TypeScript
25 lines
718 B
TypeScript
import type { StorybookConfig } from '@storybook/angular';
|
|
|
|
const config: StorybookConfig = {
|
|
stories: ['../stories/**/*.@(mdx|stories.@(js|jsx|ts|tsx))'],
|
|
addons: [
|
|
'@storybook/addon-essentials',
|
|
'@storybook/addon-interactions',
|
|
'@storybook/addon-docs',
|
|
],
|
|
previewHead: (head) => `
|
|
${head}
|
|
<link href="/assets/fonts/fonts.css" rel="stylesheet" />
|
|
`,
|
|
framework: {
|
|
name: '@storybook/angular',
|
|
options: {},
|
|
},
|
|
};
|
|
|
|
export default config;
|
|
|
|
// To customize your webpack configuration you can use the webpackFinal field.
|
|
// Check https://storybook.js.org/docs/react/builders/webpack#extending-storybooks-webpack-config
|
|
// and https://nx.dev/recipes/storybook/custom-builder-configs
|