-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnext.config.mjs
More file actions
50 lines (49 loc) · 1.26 KB
/
Copy pathnext.config.mjs
File metadata and controls
50 lines (49 loc) · 1.26 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
domains: [
"images.unsplash.com",
"i.pravatar.cc",
"source.unsplash.com",
"randomuser.me",
"unsplash.it",
"picsum.photos",
"lh3.googleusercontent.com",
"api.goonchan.org",
"img.youtube.com",
"i.ytimg.com",
"localhost",
"proofly.siddz.com",
"siddz.com",
"api.siddz.com"
],
remotePatterns: [
{
protocol: 'https',
hostname: '*.cloudflarestream.com',
port: '',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'imagedelivery.net',
port: '',
pathname: '/**',
},
{
protocol: 'https',
hostname: '**.cloudflare.com',
port: '',
pathname: '/**',
},
],
unoptimized: false,
dangerouslyAllowSVG: true,
},
eslint: {
// Warning: This allows production builds to successfully complete even if
// your project has ESLint errors.
ignoreDuringBuilds: true,
},
};
export default nextConfig;