初次提交代码

This commit is contained in:
2026-05-27 14:12:10 +08:00
parent 321aa5b319
commit ca32aa87e7
88 changed files with 19000 additions and 1 deletions

16
next.config.ts Normal file
View File

@@ -0,0 +1,16 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
typescript: {
ignoreBuildErrors: true
},
eslint: {
ignoreDuringBuilds: true
},
/* config options here */
api: {
bodyParser: false // 必须禁用默认解析器
}
};
export default nextConfig;