Fix basepath (#8)

This commit is contained in:
Steven Zhao 2025-04-09 11:42:11 -04:00 committed by GitHub
parent 42b4882282
commit 91abce661e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View File

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

View File

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