Files
Dashboard/next.config.ts
2025-10-05 16:54:07 +02:00

16 lines
292 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
allowedDevOrigins: [
"10.8.0.2",
"*.local",
"dashboard.cercle-gpt.com",
"*.cercle-gpt.com",
"localhost:3000",
"127.0.0.1:3000",
],
};
export default nextConfig;