import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "standalone", allowedDevOrigins: ["192.168.31.172"], images: { remotePatterns: [ { protocol: "http", hostname: "**", }, { protocol: "https", hostname: "**", }, ], }, }; export default nextConfig;