import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ output: "standalone", images: { remotePatterns: [ { protocol: 'https', hostname: 'storage.googleapis.com', pathname: '/**', }, { protocol: "http", hostname: "localhost", port: "3001", pathname: "/**", }, { protocol: "http", hostname: "127.0.0.1", port: "3001", pathname: "/**", }, { protocol: "https", hostname: "lh3.googleusercontent.com", pathname: "/**", }, ], }, }; export default nextConfig;