From 08777100b5523768e666cf0adf41cdba675bd357 Mon Sep 17 00:00:00 2001 From: tpjanssen <25168870+tpjanssen@users.noreply.github.com> Date: Mon, 6 Nov 2023 13:44:53 +0100 Subject: [PATCH] Add /vod and /exports to Vite proxy config (#8490) --- web/vite.config.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/web/vite.config.ts b/web/vite.config.ts index 0f57d9203..930c0f36e 100644 --- a/web/vite.config.ts +++ b/web/vite.config.ts @@ -13,6 +13,12 @@ export default defineConfig({ proxy: { '/api': { target: 'http://localhost:5000' + }, + '/vod': { + target: 'http://localhost:5000' + }, + '/exports': { + target: 'http://localhost:5000' } } },