This commit is contained in:
Luna D 2023-02-18 23:05:20 +01:00
parent 5f1c112b08
commit 128fd1e970
No known key found for this signature in database
GPG key ID: 4B1C63448394F688

View file

@ -98,6 +98,7 @@ export default {
outputPath: './fonts',
publicPath: '../fonts',
},
dependency: { not: ['url'] },
},
{
test: /app\.js/,
@ -123,7 +124,11 @@ export default {
loader: 'css-loader',
options: {
sourceMap: isDevelopment,
url: (url) => !url.startsWith('/'),
url: {
filter: (url, _resourcePath) => {
return !url.startsWith('/');
}
}
},
},
{