updated storybook webpack config

This commit is contained in:
andres alcocer
2022-11-27 15:52:55 -05:00
parent f5edc45744
commit 97011b55b3
11 changed files with 28633 additions and 1846 deletions

35
.storybook/main.js Normal file
View File

@@ -0,0 +1,35 @@
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const custom = require('../webpack.config.js')()
module.exports = {
stories: ['../src/**/*.stories.mdx', '../src/**/*.stories.@(js|jsx|ts|tsx)'],
addons: [
'@storybook/addon-links',
'@storybook/addon-essentials',
'@storybook/addon-interactions',
'@storybook/preset-create-react-app',
],
framework: '@storybook/react',
core: {
builder: '@storybook/builder-webpack5',
},
webpackFinal: (config) => {
return {
...config,
module: {
...config.module,
rules: custom.module.rules, // babel, sass, fonts and images loaders
},
resolve: {
...config.resolve,
...custom.resolve, // custom imports resolvers
},
plugins: [
new MiniCssExtractPlugin({
filename: '[name].[contenthash].css',
}),
...config.plugins,
],
}
},
}