Skip to content

Commit

Permalink
update image.domains to image.remotePatterns
Browse files Browse the repository at this point in the history
deploy
  • Loading branch information
trueberryless committed Aug 2, 2024
1 parent 35c9c8f commit a698275
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
domains: ["images.unsplash.com"],
remotePatterns: [
{
protocol: "https",
hostname: "images.unsplash.com",
port: "",
pathname: "/**",
},
],
},
};

Expand Down

0 comments on commit a698275

Please sign in to comment.