From f1d7375e0c0ace99d803ddb52c00afacbca7302c Mon Sep 17 00:00:00 2001 From: Lilith Date: Sun, 25 Jan 2026 21:04:59 -0800 Subject: [PATCH] =?UTF-8?q?chore(trustedmeet.www):=20=F0=9F=94=A7=20Update?= =?UTF-8?q?=20Vite=20configuration=20files=20(vite.config.ts)=20to=20ensur?= =?UTF-8?q?e=20compatibility=20with=20new=20build=20settings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- @deployments/trustedmeet.www/vite.config.ts | 2 +- features/landing/frontend-public/vite.config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/@deployments/trustedmeet.www/vite.config.ts b/@deployments/trustedmeet.www/vite.config.ts index a2a7ee383..65dd49019 100644 --- a/@deployments/trustedmeet.www/vite.config.ts +++ b/@deployments/trustedmeet.www/vite.config.ts @@ -27,7 +27,7 @@ export default defineConfig({ healthCheckTimeout: 120000, }), react(), - pnpmResolve({ debug: true }), + pnpmResolve(), ], resolve: { alias: { diff --git a/features/landing/frontend-public/vite.config.ts b/features/landing/frontend-public/vite.config.ts index d6e7aaa5e..c8b417f73 100755 --- a/features/landing/frontend-public/vite.config.ts +++ b/features/landing/frontend-public/vite.config.ts @@ -11,7 +11,7 @@ export default defineConfig({ plugins: [ dependencyStartupPlugin({ feature: 'landing', - autoStart: false, // Disabled when started by orchestrator to prevent nested startup loops + autoStart: false, // Feature configs don't start dependencies - orchestrator handles that }), react(), pnpmResolve(),