import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  allowedDevOrigins: [
    '192.168.0.133',
    '192.168.0.*',
    '192.168.1.*',
    '192.168.*.*',
    '10.0.0.*',
    'localhost:3000',
    'localhost:3001',
  ],
};

export default nextConfig;
