Fix font paths when useCDN is false and no urlPath is present

Signed-off-by: Enrico Guiraud <enrico.guiraud@cern.ch>
This commit is contained in:
Enrico Guiraud
2020-01-15 00:25:39 +01:00
parent e222e4426d
commit 2d3b009e13

View File

@@ -396,7 +396,12 @@ module.exports = {
}, {
test: /\.css$/,
use: [
MiniCssExtractPlugin.loader,
{
loader: MiniCssExtractPlugin.loader,
options: {
publicPath: '',
}
},
'css-loader'
]
}, {