From 7e8eeacc41dd5aa2ef621f2aa815e2248fb03182 Mon Sep 17 00:00:00 2001 From: Dada878 Date: Tue, 19 Nov 2024 01:24:02 +0800 Subject: [PATCH] feat: add basePath configuration for 2025 in next.config.mjs --- next.config.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/next.config.mjs b/next.config.mjs index 3182a516..9074a8e4 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,6 +1,7 @@ /** @type {import('next').NextConfig} */ const nextConfig = { output: "export", + basePath: "/2025", trailingSlash: true, distDir: "dist", };