2020-01-19 15:31:13 +00:00
|
|
|
module.exports = {
|
2020-01-19 16:53:07 +00:00
|
|
|
stories: ['../client/**/*.stories.(jsx|mdx)'],
|
2020-01-19 21:05:16 +00:00
|
|
|
addons: [
|
|
|
|
'@storybook/addon-actions',
|
|
|
|
'@storybook/addon-docs',
|
|
|
|
'@storybook/addon-knobs',
|
|
|
|
'@storybook/addon-links',
|
|
|
|
'storybook-addon-theme-playground/dist/register'
|
|
|
|
],
|
2020-01-19 15:31:13 +00:00
|
|
|
webpackFinal: async config => {
|
|
|
|
// do mutation to the config
|
|
|
|
|
|
|
|
return config;
|
|
|
|
},
|
|
|
|
};
|