diff --git a/app/links/page.tsx b/app/links/page.tsx index 9084bf4..b9cd2a3 100644 --- a/app/links/page.tsx +++ b/app/links/page.tsx @@ -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} /> diff --git a/next.config.js b/next.config.js index 767719f..820a4f7 100644 --- a/next.config.js +++ b/next.config.js @@ -1,4 +1,8 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {} +const nextConfig = { + images: { + domains: ['res.cloudinary.com'], + }, +}; -module.exports = nextConfig +module.exports = nextConfig;