初始化项目

This commit is contained in:
2026-01-27 17:26:30 +08:00
commit 08af95116e
62 changed files with 9364 additions and 0 deletions

8
next.config.ts Normal file
View File

@@ -0,0 +1,8 @@
import type { NextConfig } from "next";
import path from "path";
const nextConfig: NextConfig = {
outputFileTracingRoot: path.join(__dirname),
};
export default nextConfig;