Add / to assetPrefix

This commit is contained in:
Steven 2025-04-09 11:41:18 -04:00
parent a409d8ed0d
commit 2985905fb2
No known key found for this signature in database
GPG Key ID: 1EC151C18B307356
2 changed files with 3 additions and 1 deletions

View File

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

View File

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