From 6a19efbf157467f240628e5d7de8bfa677d78c0d Mon Sep 17 00:00:00 2001 From: callodacity Date: Thu, 25 Aug 2016 21:51:16 +1000 Subject: [PATCH] fixed typo in webpack config --- webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index fc7fca5..7799663 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -58,7 +58,7 @@ module.exports = options = { loader: 'babel' }, { test: /\.sass$/, loaders: ['style', 'css', 'sass'] }, - { test: /\.css$/, loader: ['style', 'css'] }, + { test: /\.css$/, loaders: ['style', 'css'] }, { test: /\.(png|jpg)$/, loader: 'url-loader?limit=8192' }, { test: /\.html$/, loaders: ['html', 'file?name=[name].[ext]'] } ]