From 2a4e2c2171c35cc41ab1e3a9312b287cc3aa2ec8 Mon Sep 17 00:00:00 2001 From: Ali Bosworth Date: Tue, 9 May 2017 13:30:05 -0400 Subject: [PATCH] Fix missing comma in recommended Webpack config example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1def7928..7f45df32 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,7 @@ module.exports = { test: /\.css$/, use: [ 'style-loader', - { loader: 'css-loader' options: { importLoaders: 1 } }, + { loader: 'css-loader', options: { importLoaders: 1 } }, 'postcss-loader' ] }