-
Notifications
You must be signed in to change notification settings - Fork 134
/
next.config.js
39 lines (35 loc) · 935 Bytes
/
next.config.js
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
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
dangerouslyAllowSVG: true,
domains: [
"lit216.pbworks.com",
"upload.wikimedia.org",
"www.theparisreview.org",
"ychef.files.bbci.co.uk",
"media.npr.org",
"user-images.githubusercontent.com",
"images2.minutemediacdn.com",
"media.newyorker.com",
"laurencecoupe.co.uk",
"s-f.scribdassets.com",
"img.freepik.com",
"avatars.githubusercontent.com",
"images.weserv.nl",
"img.icons8.com",
"lit216.pbworks.com",
"laurencecoupe.co.uk",
"media.newyorker.com",
"images2.minutemediacdn.com",
"media.npr.org",
"ychef.files.bbci.co.uk",
"www.theparisreview.org",
"upload.wikimedia.org",
"books.google.com",
"www.svgrepo.com",
"storage.googleapis.com",
"www.svgrepo.com"
],
},
};
module.exports = nextConfig