From 2e0d87a5cf4e6d71ec4929fa2f7abe016c8dc0c2 Mon Sep 17 00:00:00 2001 From: Alaguraj0361 Date: Sat, 22 Nov 2025 21:10:03 +0530 Subject: [PATCH] config: Enable trailing slashes in Next.js output. --- next.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/next.config.ts b/next.config.ts index afcbe7e..aa3958c 100644 --- a/next.config.ts +++ b/next.config.ts @@ -2,6 +2,7 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: 'export', + trailingSlash: true, images: { unoptimized: true, },