From 1c9beff441d0e02acb02a65e78ae1f3246622b79 Mon Sep 17 00:00:00 2001 From: Jason Park Date: Mon, 18 Sep 2023 00:35:49 +0900 Subject: [PATCH] fix: fixing envvar base path for app root --- lib/constructs/presentation/web-app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/constructs/presentation/web-app.ts b/lib/constructs/presentation/web-app.ts index a60b70365..d377277ad 100644 --- a/lib/constructs/presentation/web-app.ts +++ b/lib/constructs/presentation/web-app.ts @@ -187,7 +187,7 @@ export class AmplifyMonoWebApp extends AbstractWebApp { ); this.app.addEnvironment( `VITE_MF_${name.toUpperCase()}_BASE_PATH`, - `https://${appDomain}`, + `https://develop.${appDomain}`, ); } }