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