8 lines
142 B
TypeScript
8 lines
142 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
allowedDevOrigins: ["10.20.0.188"]
|
|
};
|
|
|
|
export default nextConfig;
|