From 3633e02ff770ff7509a3d8c45b3829133e13e011 Mon Sep 17 00:00:00 2001 From: Fred KISSIE Date: Wed, 22 Oct 2025 00:17:42 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20run=20next=20server=20with=20tur?= =?UTF-8?q?bopack=20(easy=20win)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/nextServer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/nextServer.ts b/server/nextServer.ts index 78169f03..5302b9c8 100644 --- a/server/nextServer.ts +++ b/server/nextServer.ts @@ -9,7 +9,7 @@ const nextPort = config.getRawConfig().server.next_port; export async function createNextServer() { // const app = next({ dev }); - const app = next({ dev: process.env.ENVIRONMENT !== "prod" }); + const app = next({ dev: process.env.ENVIRONMENT !== "prod", turbopack: true }); const handle = app.getRequestHandler(); await app.prepare();