learn: update to use proxy (#1120)

* learn: update to use proxy

* learn: prettier fix to tsconfig
This commit is contained in:
Joseph
2025-11-04 08:52:46 +01:00
committed by GitHub
parent 5bea28a64d
commit 7a05b718a1
3 changed files with 305 additions and 341 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -6,5 +6,4 @@ export default NextAuth(authConfig).auth;
export const config = {
// https://nextjs.org/docs/app/building-your-application/routing/middleware#matcher
matcher: ['/((?!api|_next/static|_next/image|.*\\.png$).*)'],
runtime: 'nodejs',
};

View File

@@ -11,7 +11,7 @@
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"jsx": "react-jsx",
"incremental": true,
"plugins": [
{
@@ -29,7 +29,8 @@
"**/*.tsx",
".next/types/**/*.ts",
"app/lib/placeholder-data.ts",
"scripts/seed.js"
"scripts/seed.js",
".next/dev/types/**/*.ts"
],
"exclude": ["node_modules"]
}