-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext.config.ts
More file actions
27 lines (25 loc) · 792 Bytes
/
next.config.ts
File metadata and controls
27 lines (25 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
domains: [
'picsum.photos', // For our mock data
'instagram.com', // For Instagram images
'cdninstagram.com', // For Instagram CDN
'scontent.cdninstagram.com', // Common Instagram CDN domain
'scontent-iad3-1.cdninstagram.com', // Common Instagram CDN domain
'scontent-iad3-2.cdninstagram.com', // Common Instagram CDN domain
'instagram.fdnk1-3.fna.fbcdn.net', // Additional Instagram CDN domain from error
],
remotePatterns: [
{
protocol: 'https',
hostname: '**.fna.fbcdn.net',
},
{
protocol: 'https',
hostname: '**.cdninstagram.com',
},
],
},
};
export default nextConfig;