From a409d8ed0d643491c3116b6e5e0348c9632f0987 Mon Sep 17 00:00:00 2001 From: Steven Date: Wed, 9 Apr 2025 11:37:31 -0400 Subject: [PATCH] Fix basepath --- next.config.js | 2 +- next.config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/next.config.js b/next.config.js index d431642..4d3987d 100644 --- a/next.config.js +++ b/next.config.js @@ -1,6 +1,6 @@ /** @type {import('next').NextConfig} */ const nextConfig = { - /* config options here */ + basePath: '', }; export default nextConfig; \ No newline at end of file diff --git a/next.config.ts b/next.config.ts index e9ffa30..bb5b4ef 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,7 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - /* config options here */ + basePath: '', }; export default nextConfig;