8 lines
181 B
TypeScript
8 lines
181 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
allowedDevOrigins: ["*.trycloudflare.com", "192.168.68.99", "localhost"],
|
|
};
|
|
|
|
export default nextConfig;
|