mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:31:27 +08:00
24 lines
673 B
Plaintext
24 lines
673 B
Plaintext
```js
|
|
// .storybook/main.js
|
|
|
|
const path = require('path');
|
|
|
|
// Export a function. Accept the base config as the only param.
|
|
module.exports = {
|
|
webpackFinal: async (config, { configType }) => {
|
|
// `configType` has a value of 'DEVELOPMENT' or 'PRODUCTION'
|
|
// You can change the configuration based on that.
|
|
// 'PRODUCTION' is used when building the static version of storybook.
|
|
|
|
// Make whatever fine-grained changes you need
|
|
config.module.rules.push({
|
|
test: /\.scss$/,
|
|
use: ['style-loader', 'css-loader', 'sass-loader'],
|
|
include: path.resolve(__dirname, '../'),
|
|
});
|
|
|
|
// Return the altered config
|
|
return config;
|
|
},
|
|
};
|
|
``` |