Skip to content

Commit

Permalink
fix: Set Next.js minimalMode to false, customServer to true
Browse files Browse the repository at this point in the history
  • Loading branch information
yuaanlin committed Dec 13, 2023
1 parent e10b9c4 commit 62909e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/nodejs/nextjs/launcher.js.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ const NextServer = require('next/dist/server/next-server.js').default;
const nextServer = new NextServer({
conf: {{ .NextConfig }},
dir: '.',
minimalMode: true,
customServer: false,
minimalMode: false,
customServer: true,
port: 80,
hostname: 'localhost'
});
Expand Down

0 comments on commit 62909e8

Please sign in to comment.