Skip to content

Commit

Permalink
fix: images
Browse files Browse the repository at this point in the history
  • Loading branch information
juliankoehn committed Feb 14, 2025
1 parent c201071 commit 1357789
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,15 @@ const withNextIntl = createNextIntlPlugin();
const nextConfig: NextConfig = {
/* config options here */
images: {
domains: ["via.assets.so", "localhost"],
domains: ["via.assets.so", "localhost", "prismic.io"],
remotePatterns: [
{
hostname: "images.unsplash.com",
},
{
hostname: "images.prismic.io",
},
],
},
async redirects() {
return [
Expand Down

0 comments on commit 1357789

Please sign in to comment.