Skip to content

Commit

Permalink
Merge pull request #331 from UTDNebula/next-domains-to-remotePatterns
Browse files Browse the repository at this point in the history
Fix next warning
  • Loading branch information
AbhiramTadepalli authored Jan 3, 2025
2 parents 3c39bb2 + 0f528b5 commit d17c071
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@
const nextConfig = {
reactStrictMode: true,
images: {
domains: ['profiles.utdallas.edu'],
remotePatterns: [
{
protocol: 'https',
hostname: 'profiles.utdallas.edu',
port: '',
pathname: '/**',
search: '',
},
],
},
};

Expand Down

0 comments on commit d17c071

Please sign in to comment.