From d0c01919c569e351134033c01846e093b27e0c15 Mon Sep 17 00:00:00 2001 From: dvelo <52332868+DeveloLongScript@users.noreply.github.com> Date: Sat, 1 Mar 2025 19:58:27 -0600 Subject: [PATCH] fix(www): 404 null error #9 --- apps/www/next.config.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/apps/www/next.config.js b/apps/www/next.config.js index 0ce5372..10d3457 100644 --- a/apps/www/next.config.js +++ b/apps/www/next.config.js @@ -24,10 +24,8 @@ const nextConfig = { ignoreBuildErrors: true, }, output: "standalone", - experimental: { - // Disable static error pages generation - staticPageGenerationTimeout: 0, - }, + // Disable static error pages generation + staticPageGenerationTimeout: 0, }; export default nextConfig;