mirror of
https://github.com/BlueMap-Minecraft/BlueMapVue.git
synced 2024-11-22 09:35:16 +01:00
25 lines
724 B
JavaScript
25 lines
724 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,
|
|
},
|
|
'/assets/playerheads': {
|
|
//target: 'http://localhost:8100',
|
|
target: 'https://bluecolored.de/bluemap',
|
|
changeOrigin: true,
|
|
}
|
|
}
|
|
}
|
|
} |