forked from maggie-j-liu/lelandcs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
44 lines (44 loc) · 1.2 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
module.exports = {
reactStrictMode: true,
images: {
domains: ["lh3.googleusercontent.com", "robohash.org", "github.com"],
},
async redirects() {
return [
{
source: "/ticket",
destination: "/tickets",
permanent: true,
},
{
source: "/discord",
destination: "https://discord.gg/bVxW6B9yDt",
permanent: true,
},
{
source: "/signup",
destination:
"https://docs.google.com/forms/d/e/1FAIpQLSeo53lNcDbaR9tEb8P7hiH1WTYu0zPlnyyMZ-Sya3GSnMREuA/viewform",
permanent: true,
},
{
source: "/officer",
destination:
"https://docs.google.com/forms/d/e/1FAIpQLSeaCe9MAnozIkKheEfEfA-0-7-brtHNa0t3_T07pdMF9a44uw/viewform",
permanent: true,
},
{
source: "/feedback",
destination:
"https://docs.google.com/forms/d/e/1FAIpQLSffNB1I2vv-ZaeB-MPPU_l34Z9FeaOq3U1POmpPfIp-5_ciDg/viewform",
permanent: true,
},
{
source: "/attendance",
destination:
"https://docs.google.com/forms/d/e/1FAIpQLSemT7wiaZiWuZoy1ZPbRJNDJ9-X6kPGVQoWpQEGutSRLSz1Yg/viewform",
permanent: true,
},
];
},
};