From 391971794b69bfa7c64cba630e48f3cfbe010348 Mon Sep 17 00:00:00 2001 From: ROYWANG Date: Sun, 20 Aug 2023 09:17:27 +0800 Subject: [PATCH] Update next.config.js To resolve the runtime error:warn - "next start" does not work with "output: standalone" configuration. Use "node .next/standalone/server.js" instead. --- next.config.js | 1 - 1 file changed, 1 deletion(-) diff --git a/next.config.js b/next.config.js index 2165a6e01..f0253c1dd 100644 --- a/next.config.js +++ b/next.config.js @@ -78,7 +78,6 @@ const config = { isProduction: process.env.NODE_ENV === 'production', }, basePath: process.env.BASE_PATH, - output: 'standalone', eslint: { ignoreDuringBuilds: true, },