From e73bae6e2f2b510ee32ef7d337d5cbd0d01f8e20 Mon Sep 17 00:00:00 2001 From: Zack Reneau-Wedeen Date: Mon, 4 Sep 2023 12:58:45 -0700 Subject: [PATCH] Update next.config.js to support github profile pictures --- next.config.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/next.config.js b/next.config.js index 11854b3..afdc95a 100644 --- a/next.config.js +++ b/next.config.js @@ -4,4 +4,14 @@ module.exports = { experimental: { serverActions: true, }, + images: { + remotePatterns: [ + { + protocol: 'https', + hostname: 'avatars.githubusercontent.com', + port: '', + pathname: '**', + }, + ], + }, };