-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathnext.config.js
More file actions
78 lines (69 loc) · 1.65 KB
/
Copy pathnext.config.js
File metadata and controls
78 lines (69 loc) · 1.65 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
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
const { withSentryConfig } = require('@sentry/nextjs');
/**
* @type {import('next').NextConfig}
*/
const nextConfig = {
reactStrictMode: true,
eslint: {
ignoreDuringBuilds: true,
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**',
},
],
},
async headers() {
return [
{
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',
},
],
},
];
},
// temp fix for reown package issue: https://github.com/MetaMask/metamask-sdk/issues/1376
webpack: (config) => {
config.resolve.fallback = {
fs: false,
net: false,
tls: false,
'@react-native-async-storage/async-storage': false,
};
return config;
},
};
module.exports = withSentryConfig(nextConfig, {
// Suppress source map upload logs in CI
silent: true,
// Source map upload config (requires SENTRY_AUTH_TOKEN)
org: process.env.SENTRY_ORG,
project: process.env.SENTRY_PROJECT,
authToken: process.env.SENTRY_AUTH_TOKEN,
// Tree-shake Sentry debug logs (new recommended pattern)
webpack: {
treeshake: {
removeDebugLogging: true,
},
},
// Route events through your domain to reduce ad-blocker drops
tunnelRoute: '/monitoring',
// Hide source maps from users
hideSourceMaps: true,
// Disable telemetry
telemetry: false,
});