/** @type {import('next').NextConfig} */ const nextConfig = { output: "standalone", images: { remotePatterns: [ { protocol: "http", hostname: "localhost", port: "9000", pathname: "/drink-images/**", }, { protocol: "https", hostname: "*.amazonaws.com", pathname: "/**", }, ], }, }; export default nextConfig;