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
No known key found for this signature in database
GPG key ID: 5B22DF4EFB748A2B

View file

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