From b8b10cd0cb72f00ed740086679d26abd9e0578e3 Mon Sep 17 00:00:00 2001 From: Abraham Berzunza Date: Sat, 22 Apr 2017 04:01:58 -0500 Subject: [PATCH] docs: detail about the configuration in production webpack v2x modified (#232) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7340c6d..47072fa 100644 --- a/README.md +++ b/README.md @@ -209,9 +209,9 @@ Setup: ```js { test: /\.css$/, - loader: ExtractTextPlugin.extract({ + use: ExtractTextPlugin.extract({ fallback: 'style-loader', - use: 'css?modules&importLoaders=1&localIdentName=[path]___[name]__[local]___[hash:base64:5]!resolve-url!postcss', + use: 'css-loader?modules,localIdentName="[name]-[local]-[hash:base64:6]"' }), } ```