fix: update env types

This commit is contained in:
Mythie
2023-05-06 14:34:20 +10:00
parent e80997f462
commit e7e881be01
2 changed files with 4 additions and 4 deletions

View File

@@ -45,5 +45,5 @@ NEXT_PUBLIC_STRIPE_COMMUNITY_PLAN_YEARLY_PRICE_ID=
#FEATURE FLAGS #FEATURE FLAGS
# Allow users to register via the /signup page. Otherwise they will be redirect to the home page. # Allow users to register via the /signup page. Otherwise they will be redirect to the home page.
ALLOW_SIGNUP=true NEXT_PUBLIC_ALLOW_SIGNUP=true
ALLOW_SUBSCRIPTIONS=true NEXT_PUBLIC_ALLOW_SUBSCRIPTIONS=true

View File

@@ -15,8 +15,8 @@ declare namespace NodeJS {
STRIPE_API_KEY?: string; STRIPE_API_KEY?: string;
STRIPE_WEBHOOK_SECRET?: string; STRIPE_WEBHOOK_SECRET?: string;
STRIPE_COMMUNITY_PLAN_MONTHLY_PRICE_ID?: string; NEXT_PUBLIC_STRIPE_COMMUNITY_PLAN_MONTHLY_PRICE_ID?: string;
STRIPE_COMMUNITY_PLAN_YEARLY_PRICE_ID?: string; NEXT_PUBLIC_STRIPE_COMMUNITY_PLAN_YEARLY_PRICE_ID?: string;
NEXT_PUBLIC_ALLOW_SIGNUP?: string; NEXT_PUBLIC_ALLOW_SIGNUP?: string;
NEXT_PUBLIC_ALLOW_SUBSCRIPTIONS?: string; NEXT_PUBLIC_ALLOW_SUBSCRIPTIONS?: string;