import type { NextConfig } from "next"; const nextConfig: NextConfig = { allowedDevOrigins: ["192.168.1.101"], images: { remotePatterns: [ { protocol: "https", hostname: "img.clerk.com", }, ], }, }; export default nextConfig;