From 4371342fe309a7ad4522f18ec124f852e50bd8cf Mon Sep 17 00:00:00 2001 From: Siddhartha Basu Date: Sun, 11 Feb 2024 07:49:34 -0600 Subject: [PATCH] feat(.env.development): add VITE_LOGTO_ENDPOINT and VITE_LOGTO_APPID environment variables The addition of VITE_LOGTO_ENDPOINT and VITE_LOGTO_APPID environment variables provides necessary configuration for the Logto authentication service. The change in VITE_APP_BASENAME from an empty string to '/' ensures that the application's base URL is correctly set, which is crucial for proper routing and navigation. --- apps/dicty-frontpage/.env.development | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/dicty-frontpage/.env.development b/apps/dicty-frontpage/.env.development index 2c2fc34f21..ed7fb12c2f 100644 --- a/apps/dicty-frontpage/.env.development +++ b/apps/dicty-frontpage/.env.development @@ -1,5 +1,7 @@ -VITE_APP_BASENAME='' +VITE_APP_BASENAME='/' VITE_APP_GA_TRACKING_ID='' +VITE_LOGTO_ENDPOINT="https://logto.dictybase.dev" +VITE_LOGTO_APPID="cu7h1redzdyerxcmc829d" VITE_APP_GRAPHQL_SERVER='https://graphql.dictybase.dev/graphql' VITE_APP_LOGTO_API_FIRST_RESOURCE="https://user.dictybase.dev/api" VITE_APP_LOGTO_API_SECOND_RESOURCE="https://content.dictybase.dev/api"