From 2d3b009e13d530b902e7c36e62134a8e72c26ab4 Mon Sep 17 00:00:00 2001 From: Enrico Guiraud Date: Wed, 15 Jan 2020 00:25:39 +0100 Subject: Fix font paths when useCDN is false and no `urlPath` is present Signed-off-by: Enrico Guiraud --- webpack.common.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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' ] }, { -- cgit v1.2.3