From 3e510ea8516f1953221d4cc90f6ca0e5103a060b Mon Sep 17 00:00:00 2001 From: Lipan Date: Thu, 9 Mar 2017 10:10:13 +0800 Subject: [PATCH] webpack.config.js is wrong It's not correct that `plugins` is wrap in the `module` --- docs/en/configurations/custom-blocks.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/en/configurations/custom-blocks.md b/docs/en/configurations/custom-blocks.md index 2066b59a5..ce833e0cd 100644 --- a/docs/en/configurations/custom-blocks.md +++ b/docs/en/configurations/custom-blocks.md @@ -57,11 +57,11 @@ module.exports = { } } } - ], - plugins: [ - // output all docs into a single file - new ExtractTextPlugin('docs.md') ] - } + }, + plugins: [ + // output all docs into a single file + new ExtractTextPlugin('docs.md') + ] } ```