-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext.config.mjs
More file actions
38 lines (35 loc) · 907 Bytes
/
Copy pathnext.config.mjs
File metadata and controls
38 lines (35 loc) · 907 Bytes
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
import { withSentryConfig } from '@sentry/nextjs';
import './env.mjs';
/** @type {import('next').NextConfig} */
const nextConfig = {
redirects: async () => [
{
destination:
'https://experiment-station.notion.site/Privacy-Policy-for-Beecast-c69c47d343694b8884eede01f8a61341?pvs=4',
permanent: false,
source: '/privacy-policy',
},
{
destination:
'https://experiment-station.notion.site/Terms-of-Service-for-Beecast-85524ec372614383b4d86156e47e5df7?pvs=4',
permanent: false,
source: '/terms-of-service',
},
],
};
export default withSentryConfig(
nextConfig,
{
org: 'experiment-station',
project: 'beecast',
silent: true,
},
{
automaticVercelMonitors: true,
disableLogger: true,
hideSourceMaps: true,
transpileClientSDK: true,
tunnelRoute: '/monitoring',
widenClientFileUpload: true,
},
);