-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnext.config.js
48 lines (47 loc) · 1.19 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
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
i18n: {
locales: ["en"],
defaultLocale: "en",
},
async redirects() {
return [
{
source: "/register",
destination:
"https://organize.mlh.io/participants/events/8723-queen_city_hacks",
permanent: true,
},
{
source: "/discord",
destination: "https://discord.gg/fsrnAZaKGM",
permanent: true,
},
{
source: "/donate",
destination: "https://bank.hackclub.com/donations/start/queencityhacks",
permanent: true,
},
{
source: "/gallery",
destination: "https://photos.app.goo.gl/5JEewrp4ZFYFXJVV6",
permanent: true,
},
{
source: "/apply",
destination:
"https://docs.google.com/forms/d/e/1FAIpQLSdzURVdIMT8362Mzd3S4s35zDQkugJwZM1W6j9E0IvfIRoauA/viewform?usp=sf_link",
permanent: true,
},
{
source: "/replit",
destination:
"https://replit.com/teams/join/ztbncniaekhcsybcxvpwhycacuuozikr-qch2023",
permanent: true,
},
];
},
};
module.exports = nextConfig;