forked from opencollective/opencollective-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
153 lines (141 loc) · 4.37 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
require('./env');
const withSourceMaps = require('@zeit/next-source-maps')();
const { REWRITES } = require('./rewrites');
const nextConfig = {
useFileSystemPublicRoutes: process.env.IS_VERCEL === 'true',
webpack: (config, { webpack, isServer, buildId }) => {
config.plugins.push(
// Ignore __tests__
new webpack.IgnorePlugin(/[\\/]__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,
SENTRY_DSN: null,
ONBOARDING_MODAL: true,
NEW_HOST_APPLICATION_FLOW: null,
TW_API_COLLECTIVE_SLUG: null,
REJECT_CONTRIBUTION: false,
REJECTED_CATEGORIES: false,
CHANGE_LOG_UPDATES_ENABLED: false,
WISE_ENVIRONMENT: 'sandbox',
}),
);
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)$/,
use: {
loader: 'html-loader',
},
});
// 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',
},
],
},
]
: [];
},
};
module.exports = withSourceMaps(nextConfig);