-
Notifications
You must be signed in to change notification settings - Fork 7
/
next.config.js
86 lines (85 loc) · 2.93 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
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
eslint: {
// Warning: This allows production builds to successfully complete even if
// your project has ESLint errors.
ignoreDuringBuilds: true
},
async redirects() {
return [
{
source: "/waiver",
destination:
"https://drive.google.com/file/d/1Zpdzz3XeXahzEaPOyO60rNnXZNPjySCr/view?usp=sharing",
permanent: true
},
{
source: "/projectform",
destination: "https://forms.gle/bzpwPR4JYy8EQDt88",
permanent: true
},
{
source: "/opening",
destination:
"https://www.canva.com/design/DAF9OpZ4hEo/3jeYaPwIgiz2k-B86x3uVA/edit?utm_content=DAF9OpZ4hEo&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton",
permanent: true
},
{
source: "/closing",
destination:
"https://www.canva.com/design/DAF91HzUYYc/jOyTkWDEJc1yFxMTCZwTEg/view?utm_content=DAF91HzUYYc&utm_campaign=designshare&utm_medium=link&utm_source=editor",
permanent: true
},
{
source: "/androiddev",
destination:
"https://docs.google.com/presentation/d/14KNA1VjsvGRGFQsj8Yi7p0aFqW-nejssvCfwXHkbPYE/edit#slide=id.p",
permanent: true
},
{
source: "/introtopython",
destination:
"https://docs.google.com/presentation/d/1VRpyLBAA4Uhsz6oTms5B6er51ncSDJa3la1Sx_zLr3c/edit#slide=id.ga073618e60_0_16",
permanent: true
},
{
source: "/internship101",
destination:
"https://www.canva.com/design/DAF9mD1iGY4/XSx5RXLVWaSx18EygQoYtw/view?utm_content=DAF9mD1iGY4&utm_campaign=designshare&utm_medium=link&utm_source=editor",
permanent: true
},
{
source: "/iosdev",
destination:
"https://www.canva.com/design/DAF9mD1iGY4/XSx5RXLVWaSx18EygQoYtw/view?utm_content=DAF9mD1iGY4&utm_campaign=designshare&utm_medium=link&utm_source=editor",
permanent: true
},
{
source: "/sqlite",
destination:
"https://docs.google.com/presentation/d/1-zB-HKooFSi0vnWJlnby0HaYlHnuj5KoyMPAQvwL_AE/edit?usp=sharing",
permanent: true
},
{
source: "/sveltekit",
destination:
"https://docs.google.com/presentation/d/1X7AQ1yP7b-QU9oV_0dQn43bYQYVwaB2l_5ZsGi4Yhe0/edit?usp=sharing",
permanent: true
},
{
source: "/concepttoproject",
destination:
"https://docs.google.com/presentation/d/1UZz9EG6FlJisbmFXSl8cjGB4QqlpWJxXt1FoHcBxm74/edit?usp=sharing",
permanent: true
},
{
source: "/guidetointernship",
destination:
"https://www.canva.com/design/DAF9mD1iGY4/XSx5RXLVWaSx18EygQoYtw/view?utm_content=DAF9mD1iGY4&utm_campaign=designshare&utm_medium=link&utm_source=editor",
permanent: true
}
];
}
};
module.exports = nextConfig;