File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,8 @@ export type ClientEnv = z.infer<typeof clientEnvSchema>
3131export const clientProcessEnv : ClientInput = {
3232 NEXT_PUBLIC_CB_ENVIRONMENT : process . env . NEXT_PUBLIC_CB_ENVIRONMENT ,
3333 NEXT_PUBLIC_CODEBUFF_APP_URL : process . env . NEXT_PUBLIC_CODEBUFF_APP_URL ,
34- NEXT_PUBLIC_CODEBUFF_BACKEND_URL : process . env . CODEBUFF_BACKEND_URL ,
34+ NEXT_PUBLIC_CODEBUFF_BACKEND_URL :
35+ process . env . NEXT_PUBLIC_CODEBUFF_BACKEND_URL ,
3536 NEXT_PUBLIC_SUPPORT_EMAIL : process . env . NEXT_PUBLIC_SUPPORT_EMAIL ,
3637 NEXT_PUBLIC_POSTHOG_API_KEY : process . env . NEXT_PUBLIC_POSTHOG_API_KEY ,
3738 NEXT_PUBLIC_POSTHOG_HOST_URL : process . env . NEXT_PUBLIC_POSTHOG_HOST_URL ,
@@ -46,5 +47,3 @@ export const clientProcessEnv: ClientInput = {
4647}
4748
4849export const env = clientEnvSchema . parse ( clientProcessEnv )
49-
50- console . log ( { client : 'env' } , 'asdf' )
Original file line number Diff line number Diff line change @@ -76,5 +76,3 @@ const serverProcessEnv: ServerInput = {
7676}
7777
7878export const env = serverEnvSchema . parse ( serverProcessEnv )
79-
80- console . log ( { server : 'env' } , 'asdf' )
You can’t perform that action at this time.
0 commit comments