Skip to content

Commit

Permalink
fix: update env.ts to set NEXT_PUBLIC_PORT as a string
Browse files Browse the repository at this point in the history
  • Loading branch information
EdSDR committed Sep 17, 2024
1 parent 2bc0a3f commit 3e7ce65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/commune-cache/src/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const env = createEnv({
},
clientPrefix: "NEXT_PUBLIC_",
client: {
NEXT_PUBLIC_PORT: z.number().default(3000),
NEXT_PUBLIC_PORT: z.string().default("3000"),
NEXT_PUBLIC_WS_PROVIDER_URL: z.string().url(),
},
runtimeEnv: process.env,
Expand Down

0 comments on commit 3e7ce65

Please sign in to comment.