Files
2026-05-20 18:45:21 -05:00

9 lines
255 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
// Allow phone/other devices on LAN to use dev HMR (e.g. http://192.168.x.x:3000)
allowedDevOrigins: ["192.168.2.203", "localhost", "127.0.0.1"],
};
export default nextConfig;