mirror of
https://github.com/philomena-dev/philomena.git
synced 2025-01-31 19:36:44 +01:00
fix fa
This commit is contained in:
parent
5f1c112b08
commit
128fd1e970
1 changed files with 6 additions and 1 deletions
|
@ -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('/');
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue