Skip to content

Commit

Permalink
Fix next warning
Browse files Browse the repository at this point in the history
⚠ The "images.domains" configuration is deprecated. Please use "images.remotePatterns" configuration instead.
  • Loading branch information
TyHil committed Nov 23, 2024
1 parent 6972a70 commit 0f528b5
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 0f528b5

Please sign in to comment.