-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnext.config.js
executable file
·103 lines (99 loc) · 2.84 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
const { withPlaiceholder } = require("@plaiceholder/next");
const authorizedImageDomains = [
"res.cloudinary.com",
"images.unsplash.com",
"www.notion.so",
"s3.us-west-2.amazonaws.com",
"images.ctfassets.net",
];
/** @type {import('next').NextConfig} */
const nextConfig = {
staticPageGenerationTimeout: 900,
reactStrictMode: true,
images: {
domains: authorizedImageDomains,
},
async rewrites() {
return [
{
source: "/jobs",
destination: "/jobboard",
},
];
},
async redirects() {
return [
{
source: "/index.html",
destination: "/",
permanent: true,
},
{
source: "/about.html",
destination: "/about",
permanent: true,
},
{
source: "/learn.html",
destination: "/learn",
permanent: true,
},
{
source: "/courses.html",
destination: "/courses",
permanent: true,
},
{
source: "/volunteer.html",
destination: "/volunteer",
permanent: true,
},
{
source: "/jobboard.html",
destination: "/jobboard",
permanent: true,
},
];
},
serverRuntimeConfig: {
PROJECT_ROOT: __dirname,
authorizedImageDomains,
},
webpack(conf) {
conf.module.rules.push({
test: /\.svg$/i,
issuer: { and: [/\.(js|ts|md)x?$/] },
use: [
{
loader: "@svgr/webpack",
options: {
prettier: false,
svgo: true,
svgoConfig: {
plugins: [
{
name: "removeViewBox",
active: false,
},
{
name: "cleanupIDs",
active: false,
},
{
name: "prefixIds",
active: false,
},
],
},
titleProp: true,
},
},
],
});
return conf;
},
};
const withBundleAnalyzer = require("@next/bundle-analyzer")({
enabled: process.env.ANALYZE === "true",
});
module.exports = withBundleAnalyzer(withPlaiceholder(nextConfig));