mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
Merge pull request #5881 from petekp/patch-3
Fix typo in MIGRATION.md related to webpack config
This commit is contained in:
commit
0799145445
@ -62,7 +62,7 @@ Storybook's "full control mode" for webpack allows you to override the webpack c
|
||||
In Storybook 5 there is a single signature for full-control mode that takes a parameters object with the fields `config` and `mode`:
|
||||
|
||||
```js
|
||||
module.exports = ({ config, mode }) => { config.modules.rules.push(...); return config; }
|
||||
module.exports = ({ config, mode }) => { config.module.rules.push(...); return config; }
|
||||
```
|
||||
|
||||
In contrast, the 4.x configuration function accepted either two or three arguments (`(baseConfig, mode)`, or `(baseConfig, mode, defaultConfig)`). The `config` object in the 5.x signature is equivalent to 4.x's `defaultConfig`.
|
||||
|
Loading…
x
Reference in New Issue
Block a user