diff --git a/next.config.mjs b/next.config.mjs index 4678774..2be9b3d 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,4 +1,13 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {}; +const nextConfig = { + images: { + remotePatterns: [ + { + protocol: 'https', + hostname: 'lovely-flamingo-139.convex.cloud', + } + ] + } +}; export default nextConfig;