Skip to content

Commit

Permalink
fix: allow images across the internet
Browse files Browse the repository at this point in the history
  • Loading branch information
snurfer0 committed Dec 9, 2023
1 parent 76a4ad4 commit 160de46
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
protocol: 'https',
hostname: '**',
port: '',
pathname: '**',
},
],
},
Expand Down

0 comments on commit 160de46

Please sign in to comment.