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;