From 267569aa49a3e8cafa1061c59c9b25ffb2c9b569 Mon Sep 17 00:00:00 2001 From: Jawahar S Date: Mon, 5 Feb 2024 10:38:50 +0530 Subject: [PATCH] chore: update fallback path --- server/web/next.config.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/server/web/next.config.js b/server/web/next.config.js index 4ae5018..2be6560 100644 --- a/server/web/next.config.js +++ b/server/web/next.config.js @@ -5,9 +5,11 @@ const nextConfig = { typedRoutes: true, }, output: 'export', - assetPrefix: process.env.NEXT_PUBLIC_BASE_PATH || '', - basePath: process.env.NEXT_PUBLIC_BASE_PATH || '', + assetPrefix: process.env.NEXT_PUBLIC_BASE_PATH || '/timex', + basePath: process.env.NEXT_PUBLIC_BASE_PATH || '/timex', // + assetPrefix = process.env.NEXT_PUBLIC_BASE_PATH || '' }; +console.log(process.env.NEXT_PUBLIC_BASE_PATH) + module.exports = nextConfig;