From c5b1d95c7665c8291c61d269feef115fc958d164 Mon Sep 17 00:00:00 2001 From: Prateek Shourya Date: Fri, 14 Jun 2024 17:00:35 +0530 Subject: [PATCH] fix: god mode redireciton without trailing slash. (#4811) --- web/next.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/web/next.config.js b/web/next.config.js index ea6f9e7ed..ad2914df0 100644 --- a/web/next.config.js +++ b/web/next.config.js @@ -4,6 +4,7 @@ require("dotenv").config({ path: ".env" }); const { withSentryConfig } = require("@sentry/nextjs"); const nextConfig = { + trailingSlash: true, reactStrictMode: false, swcMinify: true, output: "standalone",