import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ output: 'standalone', reactStrictMode: true, images: { remotePatterns: [ { protocol: 'https', hostname: 'picsum.photos', }, { protocol: 'https', hostname: 'api.dicebear.com', }, { protocol: 'https', hostname: 'images.unsplash.com', }, ], }, }; export default nextConfig;