From d9a6b8bdd31eab5425985c5173001df7048be79d Mon Sep 17 00:00:00 2001 From: Bram Suurd <78373894+BramSuurdje@users.noreply.github.com> Date: Wed, 6 Nov 2024 21:31:39 +0100 Subject: [PATCH] Remove basePath from Next.js config to simplify configuration and avoid potential issues with path resolution --- frontend/next.config.mjs | 3 --- 1 file changed, 3 deletions(-) diff --git a/frontend/next.config.mjs b/frontend/next.config.mjs index fc820896..a8dc140e 100644 --- a/frontend/next.config.mjs +++ b/frontend/next.config.mjs @@ -1,5 +1,3 @@ -import { basePath } from '@/config/siteConfig'; - /** @type {import('next').NextConfig} */ const nextConfig = { webpack: (config) => { @@ -17,7 +15,6 @@ const nextConfig = { }, output: "export", - basePath: basePath, }; export default nextConfig;