-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnext.config.js
139 lines (131 loc) · 4.09 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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
'use strict';
const SentryWebpackPlugin = require('@sentry/webpack-plugin');
// const { Artists } = require('./api/minarets');
const {
NEXT_PUBLIC_SENTRY_DSN,
SENTRY_ORG,
SENTRY_PROJECT,
SENTRY_AUTH_TOKEN,
NODE_ENV,
VERCEL_GITHUB_COMMIT_SHA,
} = process.env;
process.env.SENTRY_DSN = NEXT_PUBLIC_SENTRY_DSN;
const basePath = ''
module.exports = {
poweredByHeader: false,
reactStrictMode: true,
productionBrowserSourceMaps: true,
env: {
// Make the COMMIT_SHA available to the client so that Sentry events can be
// marked for the release they belong to. It may be undefined if running
// outside of Vercel
NEXT_PUBLIC_COMMIT_SHA: VERCEL_GITHUB_COMMIT_SHA,
},
webpack: (config, options) => {
// In `pages/_app.js`, Sentry is imported from @sentry/browser. While
// @sentry/node will run in a Node.js environment. @sentry/node will use
// Node.js-only APIs to catch even more unhandled exceptions.
//
// This works well when Next.js is SSRing your page on a server with
// Node.js, but it is not what we want when your client-side bundle is being
// executed by a browser.
//
// Luckily, Next.js will call this webpack function twice, once for the
// server and once for the client. Read more:
// https://nextjs.org/docs/api-reference/next.config.js/custom-webpack-config
//
// So ask Webpack to replace @sentry/node imports with @sentry/browser when
// building the browser's bundle
if (!options.isServer) {
config.resolve.alias['@sentry/node'] = '@sentry/browser'
}
// Define an environment variable so source code can check whether or not
// it's running on the server so we can correctly initialize Sentry
config.plugins.push(
new options.webpack.DefinePlugin({
'process.env.NEXT_IS_SERVER': JSON.stringify(
options.isServer.toString()
),
})
)
// When all the Sentry configuration env variables are available/configured
// The Sentry webpack plugin gets pushed to the webpack plugins to build
// and upload the source maps to sentry.
// This is an alternative to manually uploading the source maps
// Note: This is disabled in development mode.
if (
NEXT_PUBLIC_SENTRY_DSN &&
SENTRY_ORG &&
SENTRY_PROJECT &&
SENTRY_AUTH_TOKEN &&
VERCEL_GITHUB_COMMIT_SHA &&
NODE_ENV === 'production'
) {
config.plugins.push(
new SentryWebpackPlugin({
include: '.next',
ignore: ['node_modules'],
stripPrefix: ['webpack://_N_E/'],
urlPrefix: `~${basePath}/_next`,
release: VERCEL_GITHUB_COMMIT_SHA,
})
)
}
return config
},
async redirects() {
// const artistApi = new Artists();
// const artists = await artistApi.listAllArtists();
// TODO: Add redirects for venues, compilations, playlists, and concerts
return [
// ...artists.map((artist) => {
// return {
// source: `/artists/${artist.id}`,
// destination: `/artists/${artist.id}/${slugify(artist.name)}`,
// permanent: false,
// };
// }),
{
source: '/Artists/Detail/:slug*',
destination: '/artists/:slug*',
permanent: true,
},
{
source: '/Artists/RandomConcert/:slug*',
destination: '/',
permanent: false,
},
{
source: '/Concerts/Detail/:slug*',
destination: '/concerts/:slug*',
permanent: true,
},
{
source: '/Compilations/Detail/:slug*',
destination: '/compilations/:slug*',
permanent: true,
},
{
source: '/Playlists/Detail/:slug*',
destination: '/playlists/:slug*',
permanent: true,
},
{
source: '/Tours/Detail/:slug*',
destination: '/tours/:slug*',
permanent: true,
},
{
source: '/Tours/RandomConcert/:slug*',
destination: '/',
permanent: false,
},
{
source: '/Users/Detail/:slug*',
destination: '/users/:slug*',
permanent: true,
},
];
},
basePath,
}