-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathnext.config.js
More file actions
65 lines (56 loc) · 1.35 KB
/
next.config.js
File metadata and controls
65 lines (56 loc) · 1.35 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
const { withSentryConfig } = require('@sentry/nextjs');
/**
* @type {import('next').NextConfig}
*/
const nextConfig = {
reactStrictMode: true,
eslint: {
ignoreDuringBuilds: true,
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'ipfs.io',
},
{
protocol: 'https',
hostname: 'effigy.im',
},
{
protocol: 'https',
hostname: 'api.dicebear.com',
},
],
},
// 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,
});