forked from runtipi/runtipi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.mjs
40 lines (39 loc) · 1017 Bytes
/
next.config.mjs
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
import { withSentryConfig } from '@sentry/nextjs';
/** @type {import('next').NextConfig} */
const nextConfig = {
swcMinify: true,
output: 'standalone',
reactStrictMode: true,
transpilePackages: ['@runtipi/shared'],
experimental: {
serverComponentsExternalPackages: ['bullmq'],
},
async rewrites() {
return [
{
source: '/apps/:id',
destination: '/app-store/:id',
},
];
},
};
export default !process.env.LOCAL === 'true'
? withSentryConfig(
nextConfig,
{
// https://github.com/getsentry/sentry-webpack-plugin#options
silent: false,
org: 'runtipi',
project: 'runtipi-dashboard',
release: process.env.TIPI_VERSION,
},
{
// https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/
widenClientFileUpload: true,
transpileClientSDK: false,
tunnelRoute: '/errors',
hideSourceMaps: false,
disableLogger: true,
},
)
: nextConfig;