2020-08-08 23:59:13 +02:00
|
|
|
module.exports = {
|
|
|
|
|
"transpileDependencies": [
|
2022-03-18 16:27:55 +01:00
|
|
|
"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",
|
2020-09-06 14:54:03 +02:00
|
|
|
},
|
|
|
|
|
"^/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
|
|
|
}
|
|
|
|
|
}
|