Skip to content

Commit 5de0c55

Browse files
committed
Configure Next.js to allow image loading from 'res.cloudinary.com' domain.
1 parent 41a3855 commit 5de0c55

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

next.config.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
/** @type {import('next').NextConfig} */
2-
const nextConfig = {}
2+
const nextConfig = {
3+
images: {
4+
domains: ["res.cloudinary.com"],
5+
},
6+
};
37

4-
module.exports = nextConfig
8+
module.exports = nextConfig;

0 commit comments

Comments
 (0)