File tree 3 files changed +9
-4
lines changed
3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " create-t3-app " : patch
3
+ ---
4
+
5
+ fix: typo in env-schema comments
Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ export const serverSchema = z.object({
14
14
: z . string ( ) . min ( 1 ) . optional ( ) ,
15
15
NEXTAUTH_URL : z . preprocess (
16
16
// This makes Vercel deployments not fail if you don't set NEXTAUTH_URL
17
- // Since NextAuth automatically uses the VERCEL_URL if present.
17
+ // Since NextAuth.js automatically uses the VERCEL_URL if present.
18
18
( str ) => process . env . VERCEL_URL ?? str ,
19
- // VERCEL_URL doesnt include `https` so it cant be validated as a URL
19
+ // VERCEL_URL doesn't include `https` so it cant be validated as a URL
20
20
process . env . VERCEL ? z . string ( ) : z . string ( ) . url ( ) ,
21
21
) ,
22
22
DISCORD_CLIENT_ID : z . string ( ) ,
Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ export const serverSchema = z.object({
13
13
: z . string ( ) . min ( 1 ) . optional ( ) ,
14
14
NEXTAUTH_URL : z . preprocess (
15
15
// This makes Vercel deployments not fail if you don't set NEXTAUTH_URL
16
- // Since NextAuth automatically uses the VERCEL_URL if present.
16
+ // Since NextAuth.js automatically uses the VERCEL_URL if present.
17
17
( str ) => process . env . VERCEL_URL ?? str ,
18
- // VERCEL_URL doesnt include `https` so it cant be validated as a URL
18
+ // VERCEL_URL doesn't include `https` so it cant be validated as a URL
19
19
process . env . VERCEL ? z . string ( ) : z . string ( ) . url ( ) ,
20
20
) ,
21
21
DISCORD_CLIENT_ID : z . string ( ) ,
You can’t perform that action at this time.
0 commit comments