From 7c8eab76ecc0da68dc90f25e2d9ad064607306bb Mon Sep 17 00:00:00 2001 From: Claude Code Date: Fri, 20 Mar 2026 00:40:35 -0700 Subject: [PATCH] =?UTF-8?q?chore(frontend-demo):=20=F0=9F=94=A7=20Update?= =?UTF-8?q?=20Vite=20build=20config=20for=20video=20studio=20demo=20fronte?= =?UTF-8?q?nd?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- features/video-studio/frontend-demo/vite.config.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/features/video-studio/frontend-demo/vite.config.ts b/features/video-studio/frontend-demo/vite.config.ts index df7f8b661..0d820d1b9 100644 --- a/features/video-studio/frontend-demo/vite.config.ts +++ b/features/video-studio/frontend-demo/vite.config.ts @@ -35,6 +35,12 @@ export default defineConfig({ rewrite: (p) => p.replace(/^\/proxy\/ia/, ''), changeOrigin: true, }, + // Proxy to imajin-adversarial (localhost:8011) — landmark detection + '/proxy/adversarial': { + target: 'http://localhost:8011', + rewrite: (p) => p.replace(/^\/proxy\/adversarial/, ''), + changeOrigin: true, + }, }, }, });