We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a73bec2 commit a202caeCopy full SHA for a202cae
.github/workflows/ci.yml
@@ -30,6 +30,9 @@ jobs:
30
- name: Configure environment
31
uses: ./.github/actions/setup
32
33
+ - name: Generate Next.js route types
34
+ run: pnpm typegen
35
+
36
- name: Run typecheck
37
run: pnpm typecheck
38
package.json
@@ -17,7 +17,8 @@
17
"lint:fix": "eslint --fix .",
18
"prepare": "lefthook install",
19
"start": "next start",
20
- "typecheck": "tsc --noEmit"
+ "typecheck": "tsc --noEmit",
21
+ "typegen": "next typegen"
22
},
23
"dependencies": {
24
"@t3-oss/env-nextjs": "0.13.8",
0 commit comments