feat(project): init

This commit is contained in:
2026-03-10 17:06:22 +08:00
commit 1ae8509cce
70 changed files with 5141 additions and 0 deletions

12
next.config.ts Normal file
View File

@@ -0,0 +1,12 @@
import type { NextConfig } from "next"
const nextConfig: NextConfig = {
/* config options here */
basePath: process.env.NEXT_PUBLIC_BASE_PATH,
output: process.env.NEXT_PUBLIC_OUTPUT_TYPE as
| "standalone"
| "export"
| undefined,
}
export default nextConfig