From 8961668e57c9e88d673fadb776fc3a96c857c4b4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 20 Aug 2026 15:01:56 +0000 Subject: [PATCH] fix(docs): :bug: export docs routes with trailing slashes Assisted-by: Copilot:gpt-5 Co-authored-by: matteoacrossi <9745862+matteoacrossi@users.noreply.github.com> --- docs/next.config.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/next.config.mjs b/docs/next.config.mjs index 649691f9..23fa467f 100644 --- a/docs/next.config.mjs +++ b/docs/next.config.mjs @@ -5,6 +5,7 @@ const withMDX = createMDX(); /** @type {import('next').NextConfig} */ const config = { output: 'export', + trailingSlash: true, reactStrictMode: true, images: { unoptimized: true }, };