storybook/docs/snippets/common/storybook-main-webpack-preset-config.js.mdx
2020-10-07 12:23:34 +08:00

23 lines
445 B
Plaintext

```js
// .storybook/main.js
export async function webpack(baseConfig, options) {
//Modify or replace config.
//Mutating the original reference object can cause unexpected bugs,
//so in this example we replace.
const { module = {} } = baseConfig;
return {
...baseConfig,
module: {
...module,
rules: [
...(module.rules || []),
{
/* some new loader */
},
],
},
};
}
```