Update next.config.js to support github profile pictures

This commit is contained in:
Zack Reneau-Wedeen 2023-09-04 12:58:45 -07:00
parent 614963271b
commit e73bae6e2f

View file

@ -4,4 +4,14 @@ module.exports = {
experimental: { experimental: {
serverActions: true, serverActions: true,
}, },
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'avatars.githubusercontent.com',
port: '',
pathname: '**',
},
],
},
}; };