mirror of
https://github.com/BrenBroZAYT/dashy.git
synced 2026-06-13 16:39:59 +00:00
Uses SVGs instead of images for interface icons
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
module.exports = {
|
||||
chainWebpack: config => {
|
||||
config.module.rules.delete("svg");
|
||||
},
|
||||
configureWebpack: {
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /.svg$/,
|
||||
loader: 'vue-svg-loader',
|
||||
},
|
||||
],
|
||||
}
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user