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;