import type { NextConfig } from "next"; const nextConfig: NextConfig = { // Produce a self-contained server bundle at .next/standalone output: 'standalone', images: { remotePatterns: [ { protocol: 'https', hostname: 'images.unsplash.com', }, ], }, }; export default nextConfig;