first commit

This commit is contained in:
“dongming”
2025-12-19 13:01:41 +08:00
commit c5e710b94b
114 changed files with 5902 additions and 0 deletions

14
next.config.ts Normal file
View File

@@ -0,0 +1,14 @@
import type { NextConfig } from 'next'
const nextConfig: NextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
images: {
unoptimized: true,
},
// 允许所有来源访问开发服务器
allowedDevOrigins: ['*'],
}
export default nextConfig