forked from opencollective/opencollective-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
228 lines (214 loc) · 6.17 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
// This file sets a custom webpack configuration to use your Next.js app
// with Sentry.
// https://nextjs.org/docs/api-reference/next.config.js/introduction
// https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/
const { withSentryConfig } = require('@sentry/nextjs');
const path = require('path');
require('./env');
const { REWRITES } = require('./rewrites');
const nextConfig = {
eslint: { ignoreDuringBuilds: true },
useFileSystemPublicRoutes: process.env.IS_VERCEL === 'true' || process.env.API_PROXY !== 'true',
productionBrowserSourceMaps: true,
typescript: {
ignoreBuildErrors: true,
},
images: {
disableStaticImages: true,
},
webpack: (config, { webpack, buildId }) => {
config.plugins.push(
// Ignore __tests__
new webpack.IgnorePlugin({ resourceRegExp: /[\\/]__tests__[\\/]/ }),
// Only include our supported locales
new webpack.ContextReplacementPlugin(/moment[\\/]locale$/, /en|fr|es|ja/),
// Set extra environment variables accessible through process.env.*
// Will be replaced by webpack by their values!
new webpack.EnvironmentPlugin({
OC_ENV: null,
API_KEY: null,
API_URL: null,
PDF_SERVICE_URL: null,
DYNAMIC_IMPORT: true,
WEBSITE_URL: null,
NEXT_IMAGES_URL: null,
REST_URL: null,
SENTRY_DSN: null,
TW_API_COLLECTIVE_SLUG: null,
WISE_ENVIRONMENT: 'sandbox',
HCAPTCHA_SITEKEY: false,
CAPTCHA_ENABLED: false,
CAPTCHA_PROVIDER: 'HCAPTCHA',
SENTRY_TRACES_SAMPLE_RATE: null,
}),
);
config.plugins.push(
new webpack.DefinePlugin({
'process.env.SENTRY_RELEASE': JSON.stringify(buildId),
}),
);
if (['ci', 'test', 'development'].includes(process.env.OC_ENV)) {
// eslint-disable-next-line node/no-unpublished-require
const CircularDependencyPlugin = require('circular-dependency-plugin');
config.plugins.push(
new CircularDependencyPlugin({
include: /components|pages|server/,
failOnError: true,
cwd: process.cwd(),
}),
);
}
config.module.rules.push({
test: /\.md$/,
use: ['babel-loader', 'raw-loader', 'markdown-loader'],
});
// Configuration for images
config.module.rules.unshift({
test: /\.(jpg|gif|png|svg)$/,
use: {
loader: 'file-loader',
options: {
publicPath: '/_next/static/images/',
outputPath: 'static/images/',
name: '[name]-[hash].[ext]',
esModule: false,
},
},
include: [path.resolve(__dirname, 'public')],
});
// Configuration for static/marketing pages
config.module.rules.unshift({
test: /public[\\/].*\.(html)$/,
loader: 'html-loader',
options: {
esModule: false,
},
});
// Load images in base64
config.module.rules.push({
test: /\.(svg|png|jpg|gif)$/,
use: {
loader: 'url-loader',
options: {
limit: 1000000,
},
},
include: [path.resolve(__dirname, 'components')],
});
if (['ci', 'e2e'].includes(process.env.OC_ENV)) {
config.optimization.minimize = false;
}
// mjs
config.module.rules.push({
test: /\.mjs$/,
include: /node_modules/,
type: 'javascript/auto',
});
return config;
},
async rewrites() {
return REWRITES;
},
async headers() {
return process.env.IS_VERCEL === 'true'
? [
// Prevent indexing of our Vercel deployments
{
source: '/(.*?)',
headers: [
{
key: 'x-robots-tag',
value: 'none',
},
],
},
// Exception for "Next images", if on the configured domain
{
source: '/_next/image(.*?)',
headers: [
{
key: 'x-robots-tag',
value: 'all',
},
],
},
]
: [];
},
async redirects() {
return [
// Legacy settings (/edit)
{
source: '/:slug/edit/:section*',
destination: '/:slug/admin/:section*',
permanent: false,
},
{
source: '/:parentCollectiveSlug/events/:eventSlug/edit/:section*',
destination: '/:parentCollectiveSlug/events/:eventSlug/admin/:section*',
permanent: false,
},
// Legacy host dashboard (/host/dashboard)
{
source: '/:slug/dashboard/:section*',
destination: '/:slug/admin/:section*',
permanent: false,
},
// Legacy subscriptions
{
source: '/subscriptions',
destination: '/manage-contributions',
permanent: false,
},
{
source: '/:collectiveSlug/paymentmethod/:paymentMethodId/update',
destination: '/paymentmethod/:paymentMethodId/update',
permanent: false,
},
// Legacy support page
{
source: '/support',
destination: '/help',
permanent: true,
},
// Redirect /hosts to /search page with hosts filter applied
{
source: '/hosts',
destination: '/search?isHost=true',
permanent: true,
},
// Redirect legacy /discover page link to new /search page
{
source: '/discover',
destination: '/search',
permanent: true,
},
// Redirect legacy /create/opensource to new OSC apply flow
{
source: '/create/opensource/:step*',
destination: '/opensource/apply/intro',
permanent: true,
},
];
},
};
// Bypasses conflict bug between @sentry/nextjs and depcheck
const isDepcheck = process.argv[1]?.includes('.bin/depcheck');
let exportedConfig = nextConfig;
if (!isDepcheck) {
exportedConfig = withSentryConfig({
...nextConfig,
sentry: {
disableServerWebpackPlugin: true,
disableClientWebpackPlugin: true,
},
});
}
if (process.env.ANALYZE) {
// eslint-disable-next-line node/no-unpublished-require
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: true,
});
exportedConfig = withBundleAnalyzer(exportedConfig);
}
module.exports = exportedConfig;