Uses SVGs instead of images for interface icons

This commit is contained in:
Alicia Sykes
2021-04-04 22:17:10 +01:00
parent 4fffa2b698
commit 5ca3192992
8 changed files with 119 additions and 18 deletions

15
vue.config.js Normal file
View File

@@ -0,0 +1,15 @@
module.exports = {
chainWebpack: config => {
config.module.rules.delete("svg");
},
configureWebpack: {
module: {
rules: [
{
test: /.svg$/,
loader: 'vue-svg-loader',
},
],
}
}
};