From aa90a2c87006b8b19f445b9009102f40808abb89 Mon Sep 17 00:00:00 2001 From: "Michael Bradley, Jr" Date: Mon, 1 Oct 2018 19:16:56 -0500 Subject: [PATCH] can use use: shortcuts for .css --- lib/pipeline/webpack.config.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/pipeline/webpack.config.js b/lib/pipeline/webpack.config.js index 283dbcf1b..a9fb02e68 100644 --- a/lib/pipeline/webpack.config.js +++ b/lib/pipeline/webpack.config.js @@ -87,8 +87,11 @@ const base = { ] }, { - test: /\.scss$/, - use: [{loader: 'style-loader'}, {loader: 'css-loader'}] + test: /\.css$/, + use: [ + 'style-loader', + 'css-loader' + ] }, { test: /\.(png|woff|woff2|eot|ttf|svg)$/,