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

9 lines
179 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
allowedDevOrigins: ['10.8.0.2', '*.local'],
};
export default nextConfig;