Files
DogDetector/next.config.ts

8 lines
181 B
TypeScript

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