Skip to content

Commit f40524c

Browse files
committed
add image domain
1 parent 9773309 commit f40524c

File tree

1 file changed

+54
-1
lines changed

1 file changed

+54
-1
lines changed

next.config.ts

Lines changed: 54 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,61 @@ const nextConfig: NextConfig = {
1616
port: "",
1717
pathname: "/**",
1818
},
19+
{
20+
protocol: "https",
21+
hostname: "images.unsplash.com",
22+
port: "",
23+
pathname: "/**",
24+
},
25+
{
26+
protocol: "https",
27+
hostname: "media.discordapp.net",
28+
port: "",
29+
pathname: "/**",
30+
},
31+
{
32+
protocol: "https",
33+
hostname: "cdn.thewirecutter.com",
34+
port: "",
35+
pathname: "/**",
36+
},
37+
{
38+
protocol: "https",
39+
hostname: "m.media-amazon.com",
40+
port: "",
41+
pathname: "/**",
42+
},
43+
{
44+
protocol: "https",
45+
hostname: "encrypted-tbn0.gstatic.com",
46+
port: "",
47+
pathname: "/**",
48+
},
49+
{
50+
protocol: "https",
51+
hostname: "cdn.mscdirect.com",
52+
port: "",
53+
pathname: "/**",
54+
},
55+
{
56+
protocol: "https",
57+
hostname: "cdnimg.webstaurantstore.com",
58+
port: "",
59+
pathname: "/**",
60+
},
61+
{
62+
protocol: "https",
63+
hostname: "www.iconfasteners.ie",
64+
port: "",
65+
pathname: "/**",
66+
},
67+
{
68+
protocol: "https",
69+
hostname: "images-cdn.ubuy.co.in",
70+
port: "",
71+
pathname: "/**",
72+
},
1973
],
20-
domains: ["images.unsplash.com"]
2174
},
2275
};
2376

0 commit comments

Comments
 (0)