From 73163be0c376413accaca55b1e4829ab8175241e Mon Sep 17 00:00:00 2001 From: mouazkh Date: Thu, 19 Mar 2026 21:41:02 +0300 Subject: [PATCH] added base path --- next.config.mjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/next.config.mjs b/next.config.mjs index 4e37a08..0184708 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -2,7 +2,8 @@ const nextConfig = { /* config options here */ reactCompiler: true, - basePath: "/sweetHome/", + basePath: "/sweetHome", + assetPrefix: "/sweetHome/", }; export default nextConfig;