9 lines
255 B
TypeScript
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;
|