-
Notifications
You must be signed in to change notification settings - Fork 22
/
next.config.js
115 lines (105 loc) · 2.77 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/** @type {import('next').NextConfig} */
const { version } = require('./package.json');
const isDev = process.env.NODE_ENV !== 'production';
// Sometimes useful to disable this during development
const ENABLE_CSP_HEADER = true;
const CONNECT_SRC_HOSTS = [
'https://*.celo.org',
'https://*.celoscan.io',
'https://*.walletconnect.com',
'wss://*.walletconnect.com',
'wss://*.walletconnect.org',
'https://api.github.com',
'https://raw.githubusercontent.com',
'https://celo-mainnet.infura.io',
'https://qstash.upstash.io',
'https://app.safe.global',
'https://*.rainbow.me',
];
const FRAME_SRC_HOSTS = [
'https://*.walletconnect.com',
'https://*.walletconnect.org',
'https://app.safe.global',
];
const IMG_SRC_HOSTS = ['https://*.walletconnect.com', 'https://app.safe.global'];
const SCRIPTS_SRC_HOSTS = ['https://*.safe.global'];
const cspHeader = `
default-src 'self';
script-src 'self' ${isDev ? "'unsafe-eval'" : SCRIPTS_SRC_HOSTS.join(' ')};
script-src-elem 'self' 'unsafe-inline';
style-src 'self' 'unsafe-inline';
connect-src 'self' ${CONNECT_SRC_HOSTS.join(' ')};
img-src 'self' blob: data: ${IMG_SRC_HOSTS.join(' ')};
font-src 'self' data:;
object-src 'none';
base-uri 'self';
form-action 'self';
frame-src 'self' ${FRAME_SRC_HOSTS.join(' ')};
frame-ancestors 'self' ${FRAME_SRC_HOSTS.join(' ')};
${!isDev ? 'block-all-mixed-content;' : ''}
${!isDev ? 'upgrade-insecure-requests;' : ''}
`
.replace(/\s{2,}/g, ' ')
.trim();
const securityHeaders = [
{
key: 'X-XSS-Protection',
value: '1; mode=block',
},
{
key: 'X-Frame-Options',
value: `ALLOW-FROM ${FRAME_SRC_HOSTS.join(' ')}`,
},
{
key: 'X-Content-Type-Options',
value: 'nosniff',
},
{
key: 'Referrer-Policy',
value: 'strict-origin-when-cross-origin',
},
...(ENABLE_CSP_HEADER
? [
{
key: 'Content-Security-Policy',
value: cspHeader,
},
]
: []),
];
module.exports = {
webpack: (config) => {
config.externals = [...config.externals, 'pino-pretty'];
return config;
},
async headers() {
return [
{
source: '/(.*)',
headers: securityHeaders,
},
{
// This allow the manifest to be fetched and used by safe.global
source: '/manifest.json',
headers: [
{ key: 'Access-Control-Allow-Origin', value: '*' },
{ key: 'Access-Control-Allow-Methods', value: 'GET' },
{
key: 'Access-Control-Allow-Headers',
value: 'X-Requested-With, content-type, Authorization',
},
],
},
];
},
images: {
remotePatterns: IMG_SRC_HOSTS.map((h) => ({
protocol: 'https',
hostname: h,
})),
},
env: {
NEXT_PUBLIC_VERSION: version,
},
reactStrictMode: true,
};