mirror of
https://github.com/Lissy93/dashy.git
synced 2025-12-06 08:34:14 +01:00
15 lines
No EOL
259 B
JavaScript
15 lines
No EOL
259 B
JavaScript
module.exports = {
|
|
chainWebpack: config => {
|
|
config.module.rules.delete('svg');
|
|
},
|
|
configureWebpack: {
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /.svg$/,
|
|
loader: 'vue-svg-loader',
|
|
},
|
|
],
|
|
}
|
|
}
|
|
}; |