mirror of
https://github.com/philomena-dev/philomena.git
synced 2025-02-01 03:46: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',
|
outputPath: './fonts',
|
||||||
publicPath: '../fonts',
|
publicPath: '../fonts',
|
||||||
},
|
},
|
||||||
|
dependency: { not: ['url'] },
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /app\.js/,
|
test: /app\.js/,
|
||||||
|
@ -123,7 +124,11 @@ export default {
|
||||||
loader: 'css-loader',
|
loader: 'css-loader',
|
||||||
options: {
|
options: {
|
||||||
sourceMap: isDevelopment,
|
sourceMap: isDevelopment,
|
||||||
url: (url) => !url.startsWith('/'),
|
url: {
|
||||||
|
filter: (url, _resourcePath) => {
|
||||||
|
return !url.startsWith('/');
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue