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 }) } }