From 42f54aa6af167ea133cde4c6f370b1599256b2dc Mon Sep 17 00:00:00 2001 From: Roland Weiss Date: Tue, 14 Feb 2017 11:17:53 +0100 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2062a217..8cc3c172 100644 --- a/README.md +++ b/README.md @@ -134,7 +134,7 @@ module.exports = { rules: [ { test: /\.less$/, - use: ExtractTextPlugin.extract( + use: ExtractTextPlugin.extract({ fallbackLoader: 'style-loader', loaders: [ // activate source maps via loader query @@ -147,7 +147,7 @@ module.exports = { options: { sourceMap: true } } ] - ) + }) } ] },