-
Notifications
You must be signed in to change notification settings - Fork 14
/
next.config.js
57 lines (51 loc) · 1.5 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
const { withSentryConfig } = require('@sentry/nextjs');
const redirects = require('./redirects.json');
const nextBuildId = require('next-build-id');
const WITH_SENTRY =
!!process.env.NEXT_PUBLIC_SENTRY_DSN && process.env.NODE_ENV === 'production';
const DISABLE_SOURCEMAP_UPLOAD =
process.env.SENTRY_DISABLE_SOURCEMAP_UPLOAD === 'true';
if (DISABLE_SOURCEMAP_UPLOAD) {
console.warn(`
--------------------------------------------------------
WARNING: Building without uploading sourcemap to Sentry
(probably because https://errors.data.gouv.fr is down)
--------------------------------------------------------
`);
}
const nextjsConfig = {
webpack: function (config) {
config.module.rules.push({
test: /\.ya?ml$/,
use: 'js-yaml-loader',
});
return config;
},
// https://github.com/nexdrew/next-build-id
// If Scalingo is deploying, SOURCE_VERSION is set to the latest Git commit hash
generateBuildId: () =>
process.env.SOURCE_VERSION || nextBuildId({ dir: __dirname }),
async redirects() {
return redirects;
},
...(WITH_SENTRY
? {
sentry: {
widenClientFileUpload: true,
...(DISABLE_SOURCEMAP_UPLOAD
? {
disableServerWebpackPlugin: true,
disableClientWebpackPlugin: true,
}
: {}),
},
}
: {}),
};
module.exports = WITH_SENTRY
? withSentryConfig(nextjsConfig, {
silent: true,
hideSourceMaps: false,
ignore: [],
})
: nextjsConfig;