22 lines
674 B
TypeScript
22 lines
674 B
TypeScript
import type { StorybookConfig } from '@storybook/react-webpack5';
|
|
|
|
const config: StorybookConfig = {
|
|
stories: ['../src/**/*.stories.@(js|jsx|ts|tsx|mdx)'],
|
|
addons: [
|
|
'@storybook/addon-essentials',
|
|
'@storybook/addon-interactions',
|
|
'@nrwl/react/plugins/storybook',
|
|
'storybook-tailwind-dark-mode'
|
|
],
|
|
framework: {
|
|
name: '@storybook/react-webpack5',
|
|
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/packages/storybook/documents/custom-builder-configs
|