-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnext.config.js
More file actions
executable file
·85 lines (80 loc) · 1.83 KB
/
Copy pathnext.config.js
File metadata and controls
executable file
·85 lines (80 loc) · 1.83 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
79
80
81
82
83
84
85
/* eslint-disable @typescript-eslint/no-var-requires */
/** @type {import('next').NextConfig} */
const { withPlausibleProxy } = require('next-plausible')
const { withSentryConfig } = require('@sentry/nextjs')
const packageJson = require('./package.json')
import('./src/env.mjs')
const nextConfig = withPlausibleProxy()({
reactStrictMode: true,
publicRuntimeConfig: {
version: packageJson.version,
},
async headers() {
return [
{
source: '/dashboard/:path*',
headers: [
{
key: 'X-Robots-Tag',
value: 'noindex, nofollow',
},
],
},
{
source: '/profile/:path*',
headers: [
{
key: 'X-Robots-Tag',
value: 'noindex, nofollow',
},
],
},
{
source: '/retro/:path*',
headers: [
{
key: 'X-Robots-Tag',
value: 'noindex, nofollow',
},
],
},
{
source: '/auth/:path*',
headers: [
{
key: 'X-Robots-Tag',
value: 'noindex, nofollow',
},
],
},
]
},
})
const sentryConfig = {
release: {
name: `retroloop@${packageJson.version}`,
},
setCommits: {
auto: true,
ignoreMissing: true,
ignoreEmpty: true,
},
deploy: {
env: process.env.NODE_ENV,
},
dryRun: false,
org: process.env.SENTRY_ORG,
project: process.env.SENTRY_PROJECT,
authToken: process.env.SENTRY_AUTH_TOKEN,
sourcemaps: {
assets: ['.next/static/chunks/**', '.next/server/**'],
ignore: ['node_modules/**'],
deleteFilesAfterUpload:
process.env.NODE_ENV === 'production' ? ['**/*.map'] : [],
},
webpack: {
devtool: 'hidden-source-map',
},
telemetry: false,
}
module.exports = withSentryConfig(nextConfig, sentryConfig)