Files
admin/next.config.ts

11 lines
229 B
TypeScript
Raw Permalink Normal View History

2025-12-29 10:41:23 +08:00
import type { NextConfig } from "next"
const nextConfig: NextConfig = {
output: "standalone",
cacheComponents: true,
reactCompiler: true,
allowedDevOrigins: ["192.168.3.42", "192.168.3.14"],
}
export default nextConfig