From 85e51d8e4ef4575652b7ac3d45d6a040bca5af61 Mon Sep 17 00:00:00 2001 From: Radiquum Date: Sun, 27 Jul 2025 02:55:06 +0500 Subject: [PATCH] enable trailing slash in next config --- next.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/next.config.ts b/next.config.ts index 9d1f4a2..02ed00e 100644 --- a/next.config.ts +++ b/next.config.ts @@ -2,7 +2,8 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ - output: 'export' + output: 'export', + trailingSlash: true }; export default nextConfig;