Skip to content

Commit f4ab998

Browse files
committed
fix: enable nodeMiddleware in Next.js configuration for app and trust
- Updated the Next.js configuration files for both the app and trust applications to enable the nodeMiddleware option, enhancing server-side capabilities.
1 parent df232d7 commit f4ab998

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/app/next.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const config: NextConfig = {
2727
serverActions: {
2828
bodySizeLimit: "15mb",
2929
},
30-
// nodeMiddleware: true,
30+
nodeMiddleware: true,
3131
authInterrupts: true,
3232
},
3333
async rewrites() {

apps/trust/next.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const config: NextConfig = {
2727
bodySizeLimit: "15mb",
2828
},
2929
authInterrupts: true,
30-
// nodeMiddleware: true,
30+
nodeMiddleware: true,
3131
},
3232
async rewrites() {
3333
return [

0 commit comments

Comments
 (0)