mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 05:11:08 +08:00
23 lines
448 B
Plaintext
23 lines
448 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 */
|
|
},
|
|
],
|
|
},
|
|
};
|
|
}
|
|
``` |