From 20e45a8200b9c2099c6a6b4de57988d13e10d764 Mon Sep 17 00:00:00 2001 From: dbahiense Date: Mon, 22 Jul 2024 15:13:12 -0300 Subject: [PATCH] allow remote images from 3rd part hostname --- next.config.mjs | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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;