更新 next.config.ts 文件,添加输出配置为 "export"。

This commit is contained in:
wood chen 2025-07-12 06:23:33 +08:00
parent 65864d3506
commit 33f1abd6d8

View File

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