import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ output: "standalone", images: { remotePatterns: [ { protocol: "https", hostname: "avatar.vercel.sh", }, ], }, env: { NEXT_PUBLIC_BACKEND_PORT: process.env.BACKEND_PORT, }, }; export default nextConfig;