mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 08:21:06 +08:00
20 lines
436 B
JavaScript
20 lines
436 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 },
|
|
disableTelemetry: true,
|
|
},
|
|
features: {
|
|
storyStoreV7: true,
|
|
buildStoriesJson: true,
|
|
},
|
|
};
|