-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
49 lines (42 loc) · 1.43 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
'use strict';
const withBundleAnalyzer = require('@next/bundle-analyzer');
const { verifyEnvironment } = require('./expect-env');
verifyEnvironment();
module.exports = () => {
return withBundleAnalyzer({
enabled: process.env.ANALYZE === 'true'
})({
// ? Renames the build dir "build" instead of ".next"
distDir: 'build',
// ? Select some environment variables defined in .env to push to the
// ? client.
// !! DO NOT PUT ANY SECRET ENVIRONMENT VARIABLES HERE !!
env: {
RESULTS_PER_PAGE: process.env.RESULTS_PER_PAGE,
IGNORE_RATE_LIMITS: process.env.IGNORE_RATE_LIMITS,
LOCKOUT_ALL_CLIENTS: process.env.LOCKOUT_ALL_CLIENTS,
DISALLOWED_METHODS: process.env.DISALLOWED_METHODS,
MAX_CONTENT_LENGTH_BYTES: process.env.MAX_CONTENT_LENGTH_BYTES
},
eslint: {
// ! This prevents production builds from failing in the presence of
// ! ESLint errors; linting is handled during CL/CI rather than at deploy
// ! time.
ignoreDuringBuilds: true
},
typescript: {
// ! This prevents production builds from failing in the presence of
// ! TypeScript errors, e.g. when modules from dev deps cannot be found;
// ! linting is handled during CL/CI rather than at deploy time.
ignoreBuildErrors: true
},
async rewrites() {
return [
{
source: '/:path*',
destination: '/api/:path*'
}
];
}
});
};