From 081ef943994f45b2504147de040b4ce2410bf6d7 Mon Sep 17 00:00:00 2001 From: Maidul Islam Date: Thu, 9 Feb 2023 22:49:58 -0800 Subject: [PATCH] hard code site url frontend --- frontend/src/components/utilities/config/index.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/utilities/config/index.ts b/frontend/src/components/utilities/config/index.ts index 875576666a..5a55658e43 100644 --- a/frontend/src/components/utilities/config/index.ts +++ b/frontend/src/components/utilities/config/index.ts @@ -4,7 +4,7 @@ const POSTHOG_HOST = process.env.NEXT_PUBLIC_POSTHOG_HOST! || "https://app.posthog.com"; const STRIPE_PRODUCT_PRO = process.env.NEXT_PUBLIC_STRIPE_PRODUCT_PRO!; const STRIPE_PRODUCT_STARTER = process.env.NEXT_PUBLIC_STRIPE_PRODUCT_STARTER!; -const SITE_URL = process.env.NEXT_PUBLIC_SITE_URL!; +const SITE_URL = "https://app.infisical.com"; export { ENV, @@ -12,4 +12,5 @@ export { POSTHOG_HOST, SITE_URL, STRIPE_PRODUCT_PRO, - STRIPE_PRODUCT_STARTER}; \ No newline at end of file + STRIPE_PRODUCT_STARTER +}; \ No newline at end of file