9 lines
228 B
TypeScript
9 lines
228 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
// @ts-expect-error - Next.js dynamic config
|
|
allowedDevOrigins: ["*.trycloudflare.com", "192.168.68.99", "localhost"],
|
|
};
|
|
|
|
export default nextConfig;
|