mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 09:27:07 +00:00
27 lines
464 B
JavaScript
27 lines
464 B
JavaScript
module.exports = {
|
|
"transpileDependencies": [
|
|
"vuetify",
|
|
"leaflet-arrowheads"
|
|
],
|
|
devServer: {
|
|
host: "0.0.0.0",
|
|
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
|
|
})
|
|
}
|
|
}
|