From d0a883d627f32e53232fddda4e0967371b198878 Mon Sep 17 00:00:00 2001 From: Iain Maitland Date: Wed, 5 Apr 2017 16:05:52 -0400 Subject: [PATCH] Update Readme to resolve omitted -loader extension error. Per: https://webpack.js.org/guides/migrating/#automatic-loader-module-name-extension-removed --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 99bbc7c..aa7dc9a 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ To make CSS modules work with Webpack you only have to include the modules menti . . . { test: /\.css$/, - loader: 'style!css-loader?modules&importLoaders=1&localIdentName=[name]__[local]___[hash:base64:5]' + loader: 'style-loader!css-loader?modules&importLoaders=1&localIdentName=[name]__[local]___[hash:base64:5]' } . . . ```