Files
dougal-software/lib/www/client/source/vue.config.js
2020-10-09 18:10:14 +02:00

25 lines
417 B
JavaScript

module.exports = {
"transpileDependencies": [
"vuetify"
],
devServer: {
proxy: {
"^/api(/|$)": {
target: "http://localhost:3000",
},
"^/ws(/|$)": {
target: "ws://localhost:3000",
ws: true
}
}
},
chainWebpack: config => {
config
.plugin('html')
.tap(args => {
args[0].title = 'Dougal Web'
return args
})
}
}