fix: set trailingSlash to false in next.config.ts

This commit is contained in:
mlogclub
2026-06-26 15:00:19 +08:00
parent f827a7471c
commit 9fd503b52b
+1 -1
View File
@@ -12,7 +12,7 @@ export default function nextConfig(phase: string): NextConfig {
output: "export",
basePath: productionBasePath,
assetPrefix: `${productionBasePath}/`,
trailingSlash: true,
trailingSlash: false,
devIndicators: false,
}