-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
next.config.js
39 lines (34 loc) · 1012 Bytes
/
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
/* eslint-env node */
// https://github.com/vercel/next.js/blob/master/packages/next/next-server/server/config.ts
const nextConfig = {
webpack: config => {
const oneOfRule = config.module.rules.find(rule => rule.oneOf);
// Next 12 has multiple TS loaders, and we need to update all of them.
const tsRules = oneOfRule.oneOf.filter(rule => rule.test && rule.test.toString().includes('tsx|ts'));
tsRules.forEach(rule => {
// eslint-disable-next-line no-param-reassign
rule.include = undefined;
});
return config;
},
compress: true,
generateEtags: true,
pageExtensions: ['tsx', 'mdx', 'ts'],
poweredByHeader: false,
productionBrowserSourceMaps: false,
reactStrictMode: true,
swcMinify: true,
trailingSlash: false,
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'images.unsplash.com',
},{
protocol: 'https',
hostname: 'source.unsplash.com',
},
],
},
};
module.exports = nextConfig;