-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathnext.config.ts
76 lines (74 loc) · 1.9 KB
/
next.config.ts
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
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
domains: [
'i.ibb.co',
'res.cloudinary.com',
],
},
async redirects() {
return [
{
source: '/discord',
destination: 'https://discord.gg/hJ2utJX2j5',
permanent: true,
},
{
source: '/twitter',
destination: 'https://twitter.com/fosscuk',
permanent: true,
},
{
source: '/x',
destination: 'https://twitter.com/fosscuk',
permanent: true,
},
{
source: '/insta',
destination: 'https://instagram.com/fosscu',
permanent: true,
},
{
source: '/instagram',
destination: 'https://instagram.com/fosscu',
permanent: true,
},
{
source: '/pastebin',
destination: 'https://paste.fosscu.org/',
permanent: true,
},
{
source: '/fosscu-chapters',
destination: 'https://airtable.com/appFI181bKZEl3uMz/pagsGmcR2dGne7qlJ/form',
permanent: true,
},
{
source: '/non-tech-fosscu',
destination: 'https://airtable.com/appIZUCp0jbQIfGjy/pag283Ew6mnfIvLr7/form',
permanent: true,
},
{
source: '/wand/install.sh',
destination: 'https://raw.githubusercontent.com/FOSS-Community/wand/refs/heads/main/install.sh',
permanent: true,
},
{
source: '/ginister/install.sh',
destination: 'https://raw.githubusercontent.com/FOSS-Community/ginister/refs/heads/main/install.sh',
permanent: true,
},
{
source: '/tps',
destination: 'https://github.com/Mr-Sunglasses/the-python-show',
permanent: true,
},
{
source: '/tps/feedback',
destination: 'https://forms.gle/ZUEqDfacL6GAwubw9',
permanent: true,
}
];
},
};
export default nextConfig;