From 0d7c588536184b45e1df12d013eb0e0ddf02939e Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Sun, 8 Feb 2026 10:56:50 +0100 Subject: [PATCH] fix: set basePath to /gatekeeper for correct sub-path routing --- packages/gatekeeper/next.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/gatekeeper/next.config.ts b/packages/gatekeeper/next.config.ts index 4e2de7b..6757285 100644 --- a/packages/gatekeeper/next.config.ts +++ b/packages/gatekeeper/next.config.ts @@ -2,7 +2,7 @@ import mintelNextConfig from "@mintel/next-config"; import { NextConfig } from "next"; const nextConfig: NextConfig = { - // Gatekeeper specific overrides + basePath: '/gatekeeper', }; export default mintelNextConfig(nextConfig);