-
Notifications
You must be signed in to change notification settings - Fork 4
/
next.config.js
46 lines (42 loc) · 949 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
40
41
42
43
44
45
46
/* eslint-disable @typescript-eslint/no-var-requires */
const { withSentryConfig } = require('@sentry/nextjs');
const { i18n } = require('./next-i18next.config.js');
const nextConfig = {
pageExtensions: ['page.tsx'],
reactStrictMode: true,
compiler: {
styledComponents: true,
},
devIndicators: {
buildActivity: false,
},
sentry: {
autoInstrumentServerFunctions: false,
},
typescript: {
ignoreBuildErrors: true,
},
images: {
remotePatterns: [
{ protocol: 'https', hostname: 'firebasestorage.googleapis.com' },
],
},
i18n,
};
const sentryWebpackPluginOptions = {
silent: true,
org: 'saekkkanda-m0',
project: 'omct-next',
};
const sentryOptions = {
widenClientFileUpload: true,
transpileClientSDK: true,
tunnelRoute: '/monitoring',
hideSourceMaps: true,
disableLogger: true,
};
module.exports = withSentryConfig(
nextConfig,
sentryWebpackPluginOptions,
sentryOptions
);