We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ccb0960 + 7a05b71 commit ee9825cCopy full SHA for ee9825c
dashboard/final-example/middleware.ts renamed to dashboard/final-example/proxy.ts
@@ -6,5 +6,4 @@ export default NextAuth(authConfig).auth;
6
export const config = {
7
// https://nextjs.org/docs/app/building-your-application/routing/middleware#matcher
8
matcher: ['/((?!api|_next/static|_next/image|.*\\.png$).*)'],
9
- runtime: 'nodejs',
10
};
dashboard/final-example/tsconfig.json
@@ -11,7 +11,7 @@
11
"moduleResolution": "bundler",
12
"resolveJsonModule": true,
13
"isolatedModules": true,
14
- "jsx": "preserve",
+ "jsx": "react-jsx",
15
"incremental": true,
16
"plugins": [
17
{
@@ -29,7 +29,8 @@
29
"**/*.tsx",
30
".next/types/**/*.ts",
31
"app/lib/placeholder-data.ts",
32
- "scripts/seed.js"
+ "scripts/seed.js",
33
+ ".next/dev/types/**/*.ts"
34
],
35
"exclude": ["node_modules"]
36
}
0 commit comments