From 4761bd1fdd8d2141f33d5120a16bbee5c6488092 Mon Sep 17 00:00:00 2001 From: Ishaan Mittal Date: Sat, 21 Dec 2024 19:43:20 +0530 Subject: [PATCH] configure base path to add a prefix to portal FE allowing to host landing page (#174) --- next.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/next.config.js b/next.config.js index 4c1569aa..f8b24d6f 100644 --- a/next.config.js +++ b/next.config.js @@ -13,6 +13,7 @@ const nextConfig = { } return config; }, + basePath: process.env.BASE_PATH, }; module.exports = nextConfig;