From 2e9dc0dedbcbb2c3f0a22c2ce20378cdfeee36c8 Mon Sep 17 00:00:00 2001 From: Varunkumar Nagarajan Date: Thu, 12 Oct 2017 01:52:26 +0530 Subject: [PATCH] Fix typo in loader name --- 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]' } . . . ```