From a92be15e433fac57fe9430f900d239d477dbe413 Mon Sep 17 00:00:00 2001 From: Claude Code Date: Wed, 18 Mar 2026 23:10:48 -0700 Subject: [PATCH] =?UTF-8?q?build(video-studio):=20=F0=9F=93=A6=EF=B8=8F=20?= =?UTF-8?q?Update=20Vite=20build=20configs=20and=20iphotos-sync=20Makefile?= =?UTF-8?q?=20for=20video=20studio=20frontend=20setup?= 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 | 2 +- features/video-studio/packages/iphotos-sync/Makefile | 2 +- .../packages/media-gallery/frontend-dev/vite.config.ts | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/features/video-studio/frontend-demo/vite.config.ts b/features/video-studio/frontend-demo/vite.config.ts index 2053e4a4e..fc8bc3e18 100644 --- a/features/video-studio/frontend-demo/vite.config.ts +++ b/features/video-studio/frontend-demo/vite.config.ts @@ -29,7 +29,7 @@ export default defineConfig({ rewrite: (p) => p.replace(/^\/proxy\/video/, ''), changeOrigin: true, }, - // Proxy to image-assistant (10.0.0.116:5220) — bypasses CORS for gallery + // Proxy to media-gallery (10.0.0.116:5220) — bypasses CORS for gallery '/proxy/ia': { target: 'http://10.0.0.116:5220', rewrite: (p) => p.replace(/^\/proxy\/ia/, ''), diff --git a/features/video-studio/packages/iphotos-sync/Makefile b/features/video-studio/packages/iphotos-sync/Makefile index 057ae0213..9c50f7ca0 100644 --- a/features/video-studio/packages/iphotos-sync/Makefile +++ b/features/video-studio/packages/iphotos-sync/Makefile @@ -1,7 +1,7 @@ # Image Assistant macOS Agent - Makefile # Uses shared Swift tooling from ~/Code/@packages/@swift/ -SWIFT_PACKAGE_NAME = LilithIPhotos +SWIFT_PACKAGE_NAME = iPhotosSync SOURCES = Sources SWIFTLINT_CONFIG = .swiftlint.yml diff --git a/features/video-studio/packages/media-gallery/frontend-dev/vite.config.ts b/features/video-studio/packages/media-gallery/frontend-dev/vite.config.ts index 873d31eee..94b2f5786 100644 --- a/features/video-studio/packages/media-gallery/frontend-dev/vite.config.ts +++ b/features/video-studio/packages/media-gallery/frontend-dev/vite.config.ts @@ -6,7 +6,7 @@ import { platformVite } from '@lilith/build-core'; export default defineConfig({ plugins: [ - dependencyStartupPlugin({ feature: 'image-assistant', autoStart: false }), + dependencyStartupPlugin({ feature: 'media-gallery', autoStart: false }), react(), platformVite({ allowedHosts: ['.local'] }), ], @@ -16,12 +16,12 @@ export default defineConfig({ }, }, server: { - // Port from infrastructure/ports.yaml: features.image-assistant.frontend-dev + // Port from infrastructure/ports.yaml: features.media-gallery.frontend-dev port: parseInt(process.env.VITE_PORT || '5220', 10), host: true, proxy: { '/api': { - // Port from infrastructure/ports.yaml: features.image-assistant.api + // Port from infrastructure/ports.yaml: features.media-gallery.api target: process.env.VITE_API_URL || 'http://localhost:3150', changeOrigin: true, },