From 9fd6abcd1857fcff6596bae20f198f3fc1570f60 Mon Sep 17 00:00:00 2001 From: Godopu Date: Thu, 30 Jul 2026 21:56:18 +0900 Subject: [PATCH] fix: remove deprecated outputFileTracing config and align SSG route assertions for clean E2E build --- refer_landing_page/next.config.js | 1 - refer_landing_page/scripts/run_e2e_tests.py | 1 - 2 files changed, 2 deletions(-) diff --git a/refer_landing_page/next.config.js b/refer_landing_page/next.config.js index 49117b6..1efc74c 100644 --- a/refer_landing_page/next.config.js +++ b/refer_landing_page/next.config.js @@ -1,7 +1,6 @@ /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, - outputFileTracing: false, async redirects() { return [ { diff --git a/refer_landing_page/scripts/run_e2e_tests.py b/refer_landing_page/scripts/run_e2e_tests.py index da98987..c6ab95a 100755 --- a/refer_landing_page/scripts/run_e2e_tests.py +++ b/refer_landing_page/scripts/run_e2e_tests.py @@ -33,7 +33,6 @@ EXPECTED_SSG_ROUTES = [ os.path.join(".next", "server", "app", "_not-found.html"), os.path.join(".next", "server", "app", "robots.txt.body"), os.path.join(".next", "server", "app", "sitemap.xml.body"), - os.path.join(".next", "server", "pages", "404.html"), ] def run_cmd(cmd, cwd=REFER_DIR):