geraete/next.config.ts
2025-11-24 08:59:14 +01:00

9 lines
196 B
TypeScript

// next.config.ts
import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
allowedDevOrigins: ['https://geraete.local', 'http://localhost:3000'],
};
export default nextConfig;