mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 03:49:11 +00:00
12 lines
298 B
JavaScript
12 lines
298 B
JavaScript
module.exports = {
|
|
stories: [
|
|
'../*.stories.mdx',
|
|
...['atoms', 'molecules', 'organisms', 'templates'].map(
|
|
(dir) => `../${dir}/**/*.stories.@(tsx|mdx)`
|
|
),
|
|
],
|
|
addons: ['@storybook/addon-links', '@storybook/addon-essentials'],
|
|
reactOptions: {
|
|
fastRefresh: true,
|
|
},
|
|
};
|