-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.mjs
96 lines (94 loc) · 2.51 KB
/
next.config.mjs
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
/** @type {import('next').NextConfig} */
const nextConfig = {
redirects: async () => {
return [
{
source: "/crypto",
destination: "https://chat.whatsapp.com/BOCjbjTY4rN6qEJ33bUNQk",
permanent: false,
basePath: false,
},
{
source: "/snc-fb",
destination: "https://www.facebook.com/groups/startupnation.co",
permanent: false,
basePath: false,
},
{
source: "/tailwind",
destination: "https://chat.whatsapp.com/HLNVVKLSm7Y2cnmge3yhDe",
permanent: false,
basePath: false,
},
{
source: "/tailwind-fb",
destination: "https://www.facebook.com/groups/tailwindil",
permanent: false,
basePath: false,
},
{
source: "/vim",
destination: "https://chat.whatsapp.com/IigLdaxxU2ZJxhyqFlbE10",
permanent: false,
basePath: false,
},
{
source: "/dev-memes",
destination: "https://chat.whatsapp.com/KqYbOUZ2kCU3PnI2iZCOgp",
permanent: false,
basePath: false,
},
{
source: "/founders",
destination: "https://chat.whatsapp.com/LZpjFKWUIwA9kp8fGypiJM",
permanent: false,
basePath: false,
},
{
source: "/israeli-indie-hackers",
destination:
"https://docs.google.com/spreadsheets/d/1_pTq-q1tpP7xrQNmTn7KhmmVFNhpcsRQYhekkhH3SME/preview",
permanent: false,
basePath: false,
},
{
source: "/iii",
destination: "https://ysh.li/israeli-indie-hackers",
permanent: false,
basePath: false,
},
{
source: "/indie-tlv",
destination: "https://ysh.li/israeli-indie-hackers",
permanent: false,
basePath: false,
},
{
source: "/r",
destination:
"https://zora.co/collect/base:0x6917816657cee0868d43abe1749b45e3cefa726c/premint-1?referrer=0xd81B7A2a1bBf3e1c713f2A5C886f88EE5f862417",
permanent: false,
basePath: false,
},
{
source: "/a",
destination: "https://alexkubica.com",
permanent: false,
basePath: false,
},
{
source: "/mario",
destination: "https://mario-kart-3-js.vercel.app",
permanent: false,
basePath: false,
},
{
source: "/alex/mail",
destination: "mailto:[email protected]",
permanent: false,
basePath: false,
},
];
},
};
export default nextConfig;