Files
cunningham/packages/react/.storybook/main.cjs
Nathan Vasse 4beff43ebe (frontend) add storybook to react repo
Add storybook for the react repo, this will make developing components
enjoyable ! It can also serve as a single source of thruth.
2022-12-07 17:07:18 +01:00

22 lines
435 B
JavaScript

module.exports = {
"stories": [
"../src/**/*.stories.mdx",
"../src/**/*.stories.@(js|jsx|ts|tsx)"
],
"addons": [
"@storybook/addon-links",
"@storybook/addon-essentials",
"@storybook/addon-interactions",
'@storybook/preset-scss'
],
"framework": "@storybook/react",
"core": {
"builder": "@storybook/builder-vite"
},
staticDirs: [
'dist',
],
"features": {
"storyStoreV7": true
}
}