mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 07:41:58 +08:00
18 lines
384 B
JavaScript
18 lines
384 B
JavaScript
module.exports = {
|
|
stories: ['../src/**/*.stories.@(ts|js|mdx)'],
|
|
logLevel: 'debug',
|
|
addons: [
|
|
'@storybook/addon-docs',
|
|
'@storybook/addon-controls',
|
|
'@storybook/addon-storysource',
|
|
'@storybook/preset-scss',
|
|
],
|
|
core: {
|
|
builder: 'webpack4',
|
|
channelOptions: { allowFunction: false, maxDepth: 10 },
|
|
},
|
|
features: {
|
|
buildStoriesJson: true,
|
|
},
|
|
};
|