From 79f9cc6ea9d6d4279d73a9ce4c453b159dee8ae0 Mon Sep 17 00:00:00 2001 From: Shellishack <40737228+Shellishack@users.noreply.github.com> Date: Sun, 5 Apr 2026 13:51:19 +0800 Subject: [PATCH] refactor: ensure trailingSlash is set to true in Next.js configuration --- packages/app/web/next.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/app/web/next.config.ts b/packages/app/web/next.config.ts index a7d4cbc..cb6946a 100644 --- a/packages/app/web/next.config.ts +++ b/packages/app/web/next.config.ts @@ -2,6 +2,7 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "export", + trailingSlash: true, images: { unoptimized: true }, };