summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--webpack.common.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/webpack.common.js b/webpack.common.js
index 7b4cefd6..90789d63 100644
--- a/webpack.common.js
+++ b/webpack.common.js
@@ -396,7 +396,12 @@ module.exports = {
}, {
test: /\.css$/,
use: [
- MiniCssExtractPlugin.loader,
+ {
+ loader: MiniCssExtractPlugin.loader,
+ options: {
+ publicPath: '',
+ }
+ },
'css-loader'
]
}, {