From b577450c023d61326007c35072669b246fe32852 Mon Sep 17 00:00:00 2001 From: Bob Burningham Date: Sun, 8 Oct 2023 17:23:35 -0700 Subject: [PATCH] updated allow domains in next config --- next.config.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index 767719f..2341245 100644 --- a/next.config.js +++ b/next.config.js @@ -1,4 +1,11 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {} +const nextConfig = { + images: { + domains: [ + "uploadthing.com", + "utfs.io" + ] + } +} module.exports = nextConfig