From 9fbf0906525771bba0eb6d0fbde47caf49e7ca17 Mon Sep 17 00:00:00 2001 From: Jeffrey Way Date: Tue, 31 Jan 2017 10:02:09 -0500 Subject: [PATCH] Add rule for compile CSS files - closes #243 --- setup/webpack.config.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup/webpack.config.js b/setup/webpack.config.js index 8ea4522f9..72bd46a93 100644 --- a/setup/webpack.config.js +++ b/setup/webpack.config.js @@ -95,6 +95,11 @@ module.exports.module = { loader: 'babel-loader' + Mix.babelConfig() }, + { + test: /\.css$/, + loaders: ['style-loader', 'css-loader'] + }, + { test: /\.(png|jpg|gif)$/, loader: 'file-loader',