From b3c7d897937e17a4149751ef6d0eda66e070c943 Mon Sep 17 00:00:00 2001 From: "Lukas Rieger (Blue)" Date: Sun, 18 Jun 2023 23:52:41 +0200 Subject: [PATCH] revert accidentally committed vite config change --- BlueMapCommon/webapp/vite.config.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/BlueMapCommon/webapp/vite.config.js b/BlueMapCommon/webapp/vite.config.js index da4ecc8d..4b4d440a 100644 --- a/BlueMapCommon/webapp/vite.config.js +++ b/BlueMapCommon/webapp/vite.config.js @@ -21,13 +21,13 @@ export default defineConfig({ server: { proxy: { '/settings.json': { - target: 'http://localhost:8100', - //target: 'https://bluecolored.de/bluemap', + //target: 'http://localhost:8100', + target: 'https://bluecolored.de/bluemap', changeOrigin: true, }, '/maps': { - target: 'http://localhost:8100', - //target: 'https://bluecolored.de/bluemap', + //target: 'http://localhost:8100', + target: 'https://bluecolored.de/bluemap', changeOrigin: true, } }