From b0dd0c568b194f1a246bc5afb45176f9ab25312d Mon Sep 17 00:00:00 2001 From: jakapozun Date: Wed, 6 Nov 2024 18:51:47 +0100 Subject: [PATCH] fix: change path in config --- next.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/next.config.ts b/next.config.ts index 7f8877c..b363e38 100644 --- a/next.config.ts +++ b/next.config.ts @@ -10,8 +10,8 @@ const nextConfig: import('next').NextConfig = { images: { unoptimized: true, }, - basePath: isProd ? '/IXI-Labs-website' : '', - assetPrefix: isProd ? '/IXI-Labs-website' : '', + basePath: isProd ? 'https://www.ixilabs.com/' : '', + assetPrefix: isProd ? 'https://www.ixilabs.com/' : '', }; export default withNextIntl(nextConfig);