mirror of
https://github.com/vercel-labs/json-render.git
synced 2026-09-14 13:41:32 +08:00
8 lines
167 B
TypeScript
8 lines
167 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
allowedDevOrigins: ["devtools-demo.json-render.localhost"],
|
|
};
|
|
|
|
export default nextConfig;
|