Fix basepath

This commit is contained in:
Steven 2025-04-09 11:37:31 -04:00
parent 42b4882282
commit a409d8ed0d
No known key found for this signature in database
GPG Key ID: 1EC151C18B307356
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
/* config options here */
basePath: '',
};
export default nextConfig;

View File

@ -1,7 +1,7 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
basePath: '',
};
export default nextConfig;