From c05aa9b10729acbc937aa7a13076f3711bae06bc Mon Sep 17 00:00:00 2001 From: HelloYou Date: Thu, 9 Feb 2017 09:59:44 +0800 Subject: [PATCH] `extract-text-webpack-plugin@>=2` api changed --- docs/en/configurations/extract-css.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/configurations/extract-css.md b/docs/en/configurations/extract-css.md index 750f65a9c..952211b51 100644 --- a/docs/en/configurations/extract-css.md +++ b/docs/en/configurations/extract-css.md @@ -22,8 +22,8 @@ module.exports = { options: { loaders: { css: ExtractTextPlugin.extract({ - loader: 'css-loader', - fallbackLoader: 'vue-style-loader' // <- this is a dep of vue-loader, so no need to explicitly install if using npm3 + use: 'css-loader', + fallback: 'vue-style-loader' // <- this is a dep of vue-loader, so no need to explicitly install if using npm3 }) } }