From 0eaa10f97f4d859c6e3d55a6ee024c53ee803bf3 Mon Sep 17 00:00:00 2001 From: sveisvei Date: Thu, 22 Dec 2016 10:42:41 +0100 Subject: [PATCH] fix bundling of css assets --- frontend/index.html | 3 +-- frontend/webpack.config.js | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/frontend/index.html b/frontend/index.html index 25970fa8af..97528a4824 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -2,14 +2,13 @@ Unleash Admin - +
- diff --git a/frontend/webpack.config.js b/frontend/webpack.config.js index 1ec6a9fd0b..88ccd980d0 100644 --- a/frontend/webpack.config.js +++ b/frontend/webpack.config.js @@ -50,7 +50,7 @@ module.exports = { }, { test: /\.css$/, - loader: 'style-loader!css-loader', + loader: ExtractTextPlugin.extract('style', 'css'), }, ], },