forked from opencollective/opencollective-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
207 lines (195 loc) · 5.78 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
require('./env');
const { REWRITES } = require('./rewrites');
const nextConfig = {
eslint: { ignoreDuringBuilds: true },
useFileSystemPublicRoutes: process.env.IS_VERCEL === 'true',
productionBrowserSourceMaps: true,
images: {
disableStaticImages: true,
},
webpack: (config, { webpack, isServer, 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',
}),
);
config.plugins.push(
new webpack.DefinePlugin({
'process.env.SENTRY_RELEASE': JSON.stringify(buildId),
}),
);
// XXX See https://github.com/zeit/next.js/blob/canary/examples/with-sentry-simple/next.config.js
// In `pages/_app.js`, Sentry is imported from @sentry/node. While
// @sentry/browser 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#customizing-webpack-config
//
// So ask Webpack to replace @sentry/node imports with @sentry/browser when
// building the browser's bundle
if (!isServer) {
config.resolve.alias['@sentry/node'] = '@sentry/browser';
}
if (process.env.WEBPACK_BUNDLE_ANALYZER) {
// eslint-disable-next-line node/no-unpublished-require
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
config.plugins.push(
new BundleAnalyzerPlugin({
analyzerMode: 'static',
generateStatsFile: true,
openAnalyzer: false,
}),
);
}
config.module.rules.push({
test: /\.md$/,
use: ['babel-loader', 'raw-loader', 'markdown-loader'],
});
// Configuration for images
config.module.rules.unshift({
test: /public\/.*\/images[\\/].*\.(jpg|gif|png|svg)$/,
use: {
loader: 'file-loader',
options: {
publicPath: '/_next/static/images/',
outputPath: 'static/images/',
name: '[name]-[hash].[ext]',
esModule: false,
},
},
});
// 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: /components\/.*\.(svg|png|jpg|gif)$/,
use: {
loader: 'url-loader',
options: {
limit: 1000000,
},
},
});
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: '/recurring-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,
},
];
},
};
module.exports = nextConfig;