File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,16 @@ const withBundleAnalyzer = require('@next/bundle-analyzer')({
19
19
enabled : process . env . ANALYZE === 'true' ,
20
20
} ) ;
21
21
22
+ const openbuildDomains = [
23
+ 'openbuild.xyz' ,
24
+ 'file-cdn.openbuild.xyz' ,
25
+ 's3.us-west-1.amazonaws.com' ,
26
+ ] ;
27
+
28
+ const web3bioDomains = [
29
+ 'gw.ipfs-lens.dev' ,
30
+ ] ;
31
+
22
32
module . exports = withBundleAnalyzer ( {
23
33
// env: {
24
34
// NEXT_PUBLIC_ENV: 'PRODUCTION', //your next configs goes here
@@ -35,15 +45,14 @@ module.exports = withBundleAnalyzer({
35
45
} ,
36
46
images : {
37
47
domains : [
38
- 'openbuild.xyz' ,
48
+ ... openbuildDomains ,
39
49
'assets.website-files.com' ,
40
50
'images.unsplash.com' ,
41
51
'img.foresightnews.pro' ,
42
52
'statics.ambcrypto.com' ,
43
53
's1.ax1x.com' ,
44
54
'imgse.com' ,
45
- 's3.us-west-1.amazonaws.com' ,
46
- 'file-cdn.openbuild.xyz' ,
55
+ ...web3bioDomains ,
47
56
] ,
48
57
} ,
49
58
webpack : config => {
You can’t perform that action at this time.
0 commit comments