BlueMapVue/vue.config.js

20 lines
527 B
JavaScript
Raw Normal View History

2021-03-09 12:58:17 +01:00
/**
* @type {import('@vue/cli-service').ProjectOptions}
*/
module.exports = {
publicPath: './',
devServer: {
proxy: {
2022-07-31 12:39:17 +02:00
'/settings.json': {
//target: 'http://localhost:8100',
target: 'https://bluecolored.de/bluemap',
2022-07-31 12:39:17 +02:00
changeOrigin: true,
},
2022-06-27 01:08:03 +02:00
'/maps': {
//target: 'http://localhost:8100',
target: 'https://bluecolored.de/bluemap',
2021-03-09 12:58:17 +01:00
changeOrigin: true,
2022-06-27 01:08:03 +02:00
}
2021-03-09 12:58:17 +01:00
}
}
}