初始化管理后台仓库

This commit is contained in:
2025-12-29 10:41:23 +08:00
commit f9a8df0fe5
27 changed files with 2481 additions and 0 deletions

13
next.config.ts Normal file
View File

@@ -0,0 +1,13 @@
import type { NextConfig } from "next"
const nextConfig: NextConfig = {
output: "standalone",
cacheComponents: true,
reactCompiler: true,
experimental: {
turbopackFileSystemCacheForDev: true,
},
allowedDevOrigins: ["192.168.3.42", "192.168.3.14"],
}
export default nextConfig