summaryrefslogtreecommitdiff
path: root/vue.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'vue.config.js')
-rw-r--r--vue.config.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/vue.config.js b/vue.config.js
index ad5fb616..769f5c90 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -54,6 +54,12 @@ module.exports = {
port: 8000,
},
productionSourceMap: false,
+ chainWebpack: (config) => {
+ config.module
+ .rule('vue')
+ .use('vue-svg-inline-loader')
+ .loader('vue-svg-inline-loader');
+ },
configureWebpack: (config) => {
const crypto = require('crypto');
const crypto_orig_createHash = crypto.createHash;