From 29338b805f056838d456c4ad041528916f0f5feb Mon Sep 17 00:00:00 2001 From: Nalin Angrish Date: Wed, 24 Jul 2024 16:54:03 +0530 Subject: [PATCH] Prep for Prod --- next.config.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/next.config.mjs b/next.config.mjs index bcaaf6b..3b2e1ff 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -3,6 +3,7 @@ const nextConfig = { images: { domains: ['utfs.io',"example.com","images.unsplash.com"], }, + basePath: process.env.NODE_ENV == "production" ? "/bost" : "/" }; export default nextConfig;