Files
dougal-software/lib/www/client/source/vue.config.js

27 lines
464 B
JavaScript
Raw Normal View History

2020-08-08 23:59:13 +02:00
module.exports = {
"transpileDependencies": [
"vuetify",
"leaflet-arrowheads"
2020-08-08 23:59:13 +02:00
],
devServer: {
2023-08-23 19:27:57 +02:00
host: "0.0.0.0",
2020-08-08 23:59:13 +02:00
proxy: {
"^/api(/|$)": {
target: "http://localhost:3000",
},
"^/ws(/|$)": {
2020-10-09 18:10:14 +02:00
target: "ws://localhost:3000",
2020-08-08 23:59:13 +02:00
ws: true
}
}
2020-09-15 00:39:46 +02:00
},
chainWebpack: config => {
config
.plugin('html')
.tap(args => {
args[0].title = 'Dougal Web'
return args
})
2020-08-08 23:59:13 +02:00
}
}