3d-animation/next.config.ts
2026-06-07 08:19:42 +08:00

8 lines
No EOL
182 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
// Add this to allow network access
allowedDevOrigins: ['192.168.50.47'],
};
export default nextConfig;