-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
68 lines (67 loc) · 2.24 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
/** @type {import('next').NextConfig} */
module.exports = {
async redirects(){
return [
{
source: "/:slug(yt|youtube)",
destination: "https://www.youtube.com/Sukadia",
permanent: false,
},
{
source: "/:slug(vod|vods)",
destination: "https://www.youtube.com/channel/UC8S8l4sY8YsVcngSBTVyoSA",
permanent: false,
},
{
source: "/:slug(dev|update|updates)",
destination: "https://www.youtube.com/channel/UCbzmy3xP2E0rLhCPFktbwAQ",
permanent: false,
},
{
source: "/:slug(ttv|twitch)",
destination: "https://www.twitch.tv/Sukadia",
permanent: false,
},
{
source: "/:slug(hub|discord)",
destination: "https://discord.gg/ReSCjYpXnK",
permanent: false,
},
{
source: "/:slug(ev|everyonevotes|everyone-votes)",
destination: "https://top.gg/bot/805922495705251891",
permanent: false,
},
{
source: "/:slug(kofi|ko-fi)",
destination: "https://ko-fi.com/sukadia/tiers",
permanent: false,
},
{
source: "/poster",
destination: "https://ko-fi.com/s/3cf296742e",
permanent: false,
},
{
source: "/playlist",
destination: "https://github.com/Sukadia/Slash-Playlist",
permanent: false,
},
{
source: "/dark",
destination: "https://marketplace.visualstudio.com/items?itemName=Sukadia.sukadia-dev-dark",
permanent: false,
},
{
source: "/banner",
destination: "https://www.youtube.com/watch?v=tvq5aBROV_s",
permanent: false,
},
{
source: "/nsfw",
destination: "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
permanent: false,
},
]
}
}