diff --git a/webpack/config.js b/webpack/config.js index e9248c030..ae0aed26c 100644 --- a/webpack/config.js +++ b/webpack/config.js @@ -6,7 +6,12 @@ module.exports = { client: { entry: () => { return { - main: entry.client + main: [ + entry.client, + // workaround for https://github.com/webpack-contrib/extract-text-webpack-plugin/issues/456 + 'style-loader/lib/addStyles', + 'css-loader/lib/css-base' + ] }; }, @@ -36,4 +41,4 @@ module.exports = { }; } } -}; \ No newline at end of file +};