-
Notifications
You must be signed in to change notification settings - Fork 5
/
next.config.js
130 lines (130 loc) · 3.52 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
module.exports = {
async redirects() {
return [
{
source: '/hackreason-22',
destination:
'https://docs.google.com/forms/d/e/1FAIpQLScHzA9r-_dq5dwbWmwT38wr67IlGaa7TBdP6PNRGANRB7N52w/viewform',
basePath: false,
permanent: true,
},
{
source: '/member/attendance',
destination: 'https://coda.io/form/Member-Attendance-Form_dEqbwI4W8O5',
basePath: false,
permanent: true,
},
{
source: '/member/info',
destination:
'https://docs.google.com/document/d/1nHS3CIcXueuZG8hyNEQH4hkFkdmpL9WY2Q_RfiOXBO4/edit?usp=sharing',
basePath: false,
permanent: true,
},
{
source: '/member/apply',
destination: 'https://coda.io/form/AIS-Membership-Application_dNezXZc0_Z1',
basePath: false,
permanent: true,
},
{
source: '/officer/info',
destination:
'https://docs.google.com/document/d/1RZRlCcmGRv19IZ5MP1_rltm9TeEZJa20uhEavVNzXDU/edit?usp=sharing',
basePath: false,
permanent: true,
},
{
source: '/officer/apply',
destination: 'https://coda.io/form/AIS-Officer-Application-F21_dyT3gX8Hvn9',
basePath: false,
permanent: true,
},
{
source: '/aim/info',
destination:
'https://docs.google.com/document/d/1i4GJzsLaxLYvmLwQsQOwaa5H3KxIqfvprCpW9cSw-JQ/edit?usp=sharing',
basePath: false,
permanent: true,
},
{
source: '/aim/apply',
destination: 'https://coda.io/form/AIM-Fall-2021-Mentee-Application_dDlWrs9O7kG',
basePath: false,
permanent: true,
},
{
source: '/kickoff',
destination: '/events/kickoff-f21',
basePath: false,
permanent: true,
},
{
source: '/ais-rl',
destination: '/events/ais-rl',
basePath: false,
permanent: true,
},
{
source: '/resources/rl-gitpod',
destination: 'https://gitpod.io/#https://github.com/aisutd/intro-to-rl',
basePath: false,
permanent: true,
},
{
source: '/dc',
destination: 'https://discord.com/invite/7fZQZyP',
basePath: false,
permanent: true,
},
{
source: '/fb',
destination: 'https://www.facebook.com/aisutd',
basePath: false,
permanent: true,
},
{
source: '/facebook',
destination: 'https://www.facebook.com/groups/aisutd',
basePath: false,
permanent: true,
},
{
source: '/insta',
destination: 'https://www.instagram.com/utdais',
basePath: false,
permanent: true,
},
{
source: '/instagram',
destination: 'https://www.instagram.com/utdais',
basePath: false,
permanent: true,
},
{
source: '/ig',
destination: 'https://www.instagram.com/utdais',
basePath: false,
permanent: true,
},
{
source: '/linkedin',
destination: 'https://www.linkedin.com/company/ais-utd',
basePath: false,
permanent: true,
},
{
source: '/youtube',
destination: 'https://www.youtube.com/channel/UCMkpr-CIpGEDfmgYmDh-Luw',
basePath: false,
permanent: true,
},
{
source: '/yt',
destination: 'https://www.youtube.com/channel/UCMkpr-CIpGEDfmgYmDh-Luw',
basePath: false,
permanent: true,
},
];
},
};