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': {
|
2022-09-11 15:54:49 +02:00
|
|
|
//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': {
|
2022-09-11 15:54:49 +02:00
|
|
|
//target: 'http://localhost:8100',
|
|
|
|
target: 'https://bluecolored.de/bluemap',
|
2021-03-09 12:58:17 +01:00
|
|
|
changeOrigin: true,
|
|
|
|
},
|
|
|
|
'/assets/playerheads': {
|
2022-09-11 15:54:49 +02:00
|
|
|
//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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|