From bd81dd83a2ab0683206e530a1433956dad14ea5a Mon Sep 17 00:00:00 2001 From: Pete Date: Tue, 5 Mar 2019 10:26:09 -0800 Subject: [PATCH] Fix typo in MIGRATION.md related to webpack config --- MIGRATION.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MIGRATION.md b/MIGRATION.md index 2d9f55a3df5..36f4d4e7af1 100644 --- a/MIGRATION.md +++ b/MIGRATION.md @@ -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`.