From 7dc61bdbadaf26c140206d5056a4a0e79fba63e4 Mon Sep 17 00:00:00 2001 From: Everett Summer <55684557+EverettSummer@users.noreply.github.com> Date: Sun, 14 Jul 2024 15:24:26 +0100 Subject: [PATCH] fix proxy.conf.json due to vite change --- proxy.conf.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/proxy.conf.json b/proxy.conf.json index d04c668..f2624ad 100644 --- a/proxy.conf.json +++ b/proxy.conf.json @@ -1,18 +1,18 @@ { - "/api/*": { - "target": "http://localhost:5000", + "/api/**": { + "target": "http://127.0.0.1:5000", "secure": false }, - "/pic/*": { - "target": "http://localhost:8000", + "/pic/**": { + "target": "http://127.0.0.1:8000", "secure": false }, - "/video/*": { - "target": "http://localhost:8000", + "/video/**": { + "target": "http://127.0.0.1:8000", "secure": false }, "/rt-log": { - "target": "http://localhost:8083/rt-log/", + "target": "http://127.0.0.1:8083/rt-log/", "secure": false, "changeOrigin": true, "ws": true