30 lines
816 B
JavaScript
30 lines
816 B
JavaScript
module.exports = {
|
|
stories: [],
|
|
addons: [
|
|
'@storybook/addon-actions',
|
|
'@storybook/addon-viewport',
|
|
{
|
|
name: '@storybook/addon-docs',
|
|
options: {
|
|
configureJSX: true,
|
|
babelOptions: {},
|
|
sourceLoaderOptions: null,
|
|
transcludeMarkdown: true,
|
|
},
|
|
},
|
|
'@storybook/addon-controls',
|
|
'@storybook/addon-backgrounds',
|
|
'@storybook/addon-toolbars',
|
|
'@storybook/addon-measure',
|
|
'@storybook/addon-outline',
|
|
'@storybook/addon-a11y',
|
|
],
|
|
// uncomment the property below if you want to apply some webpack config globally
|
|
// webpackFinal: async (config, { configType }) => {
|
|
// // Make whatever fine-grained changes you need that should apply to all storybook configs
|
|
|
|
// // Return the altered config
|
|
// return config;
|
|
// },
|
|
};
|