-
-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: update guide for schema validation on build for Next.js 15 #282
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@chungweileong94 is attempting to deploy a commit to the t3-oss Team on Vercel. A member of the Team first needs to authorize it. |
We recommend you importing your newly created file in your `next.config.ts`. This will make sure your environment variables are validated at build time which will save you a lot of time and headaches down the road. | ||
|
||
```ts title="next.config.ts" | ||
import type { NextConfig } from "next"; | ||
|
||
// Import env here to validate during build. | ||
import "./app/env"; | ||
|
||
const nextConfig: NextConfig = { | ||
/** ... */ | ||
}; | ||
``` | ||
|
||
<Callout type="info"> | ||
|
||
If you’re using Next.js version 14 or below, you can use [unjs/jiti](https://github.com/unjs/jiti) to import TypeScript files in your `next.config.js`: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if we should have this it should alos come with a warning about the shortcomings of using esm in next.config.ts. for example import.meta.dirname
etc is undefined. i recommend sticking to js config until they fix this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@juliusmarminge is this also the case when using "type": "module"
in the package.json
file?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes - it's how they transpile the next.config.ts that's the problem, they call it out in their docs
Since now that Next.js 15 supports TypeScript for
next.config.ts
, we no longer needjiti
for importing schema TS file. We will update the guide for Next.js 15, while still keeping the old guide for Next.js 14 or below.fix #281