From b4f9dafdab3274384ebf87ef4c581568e92ca48b Mon Sep 17 00:00:00 2001 From: Debian Dev4 Date: Wed, 24 Sep 2025 16:51:53 +0000 Subject: [PATCH] fix(next): set trailingSlash=true to align with Nginx /lecoffre/ redirect --- next.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index b1c576ca..577a83f1 100644 --- a/next.config.js +++ b/next.config.js @@ -5,7 +5,7 @@ const nextConfig = { output: 'standalone', basePath: '/lecoffre', assetPrefix: '/lecoffre', - trailingSlash: false, + trailingSlash: true, typescript: { ignoreBuildErrors: true, },