Skip to content

Commit

Permalink
Adding cloudinary to next.config
Browse files Browse the repository at this point in the history
  • Loading branch information
urbanobaz committed Jan 27, 2024
1 parent 4d4eedb commit 130f42b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/links/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ const Links = () => {
className={styles.pictureImage}
src="https://res.cloudinary.com/dfrugnsw9/image/upload/v1685401832/finalheadshotedit_tfqes4.png"
alt="Portrait of Urbano Baz"
width={250}
height={250}
width={300}
height={300}
/>
</a>
</div>
Expand Down
8 changes: 6 additions & 2 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}
const nextConfig = {
images: {
domains: ['res.cloudinary.com'],
},
};

module.exports = nextConfig
module.exports = nextConfig;

1 comment on commit 130f42b

@vercel
Copy link

@vercel vercel bot commented on 130f42b Jan 27, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

portfolio-v3 – ./

urbanobaz.com
portfolio-v3-git-main-ubazdevelops.vercel.app
portfolio-v3-ubazdevelops.vercel.app

Please sign in to comment.