From 9fd503b52b1064f599a14cc24c6e7cb3b51ad8d1 Mon Sep 17 00:00:00 2001 From: mlogclub Date: Fri, 26 Jun 2026 15:00:19 +0800 Subject: [PATCH] fix: set trailingSlash to false in next.config.ts --- web/next.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/next.config.ts b/web/next.config.ts index 3feb8bd..3d54c60 100644 --- a/web/next.config.ts +++ b/web/next.config.ts @@ -12,7 +12,7 @@ export default function nextConfig(phase: string): NextConfig { output: "export", basePath: productionBasePath, assetPrefix: `${productionBasePath}/`, - trailingSlash: true, + trailingSlash: false, devIndicators: false, }