BlueMap/BlueMapCommon/webapp/vue.config.js
2022-12-18 17:30:00 +01:00

20 lines
527 B
JavaScript

/**
* @type {import('@vue/cli-service').ProjectOptions}
*/
module.exports = {
publicPath: './',
devServer: {
proxy: {
'/settings.json': {
//target: 'http://localhost:8100',
target: 'https://bluecolored.de/bluemap',
changeOrigin: true,
},
'/maps': {
//target: 'http://localhost:8100',
target: 'https://bluecolored.de/bluemap',
changeOrigin: true,
}
}
}
}