keanu-weblite/vue.config.js
2021-05-19 13:22:28 +02:00

21 lines
No EOL
367 B
JavaScript

module.exports = {
"transpileDependencies": [
"vuetify"
],
publicPath: process.env.NODE_ENV === 'production'
? './'
: './',
chainWebpack: config => {
config.plugin('html').tap(args => {
var c = require("./src/assets/config.json");
args[0].title = c.appName;
return args;
})
},
devServer: {
//https: true
},
}