You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
500 B
19 lines
500 B
const config = {
|
|
stories: ['../src/lib/**/*.stories.@(js|jsx|ts|tsx|mdx)'],
|
|
addons: ['@storybook/addon-essentials'],
|
|
framework: {
|
|
name: '@storybook/react-vite',
|
|
options: {
|
|
builder: {
|
|
viteConfigPath: '',
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|
|
|
|
// To customize your Vite configuration you can use the viteFinal field.
|
|
// Check https://storybook.js.org/docs/react/builders/vite#configuration
|
|
// and https://nx.dev/packages/storybook/documents/custom-builder-configs
|