This repository has been archived by the owner on Dec 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
84 lines (84 loc) · 1.92 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
module.exports = {
images: {
domains: [
"lh1.googleusercontent.com",
"lh2.googleusercontent.com",
"lh3.googleusercontent.com",
"lh4.googleusercontent.com",
"lh5.googleusercontent.com",
"lh6.googleusercontent.com",
],
},
async redirects() {
return [
{
source: "/(.*)",
has: [
{
type: "host",
value: "drive.dao.brussels",
},
],
permanent: false,
destination:
"https://drive.google.com/drive/folders/1r3kSwu8_w4ju0fn5TQOhg7HCQW2XwnmH",
},
{
source: "/(.*)",
has: [
{
type: "host",
value: "discord.dao.brussels",
},
],
permanent: false,
destination: "https://discord.gg/awfSTf6EHK",
},
{
source: "/(.*)",
has: [
{
type: "host",
value: "youtube.dao.brussels",
},
],
permanent: false,
destination: "https://www.youtube.com/channel/UClgbKT6NhY2Au6xn_TquBYg",
},
{
source: "/(.*)",
has: [
{
type: "host",
value: "calendar.dao.brussels",
},
],
permanent: false,
destination:
"https://calendar.google.com/calendar/embed?src=haijn9je0u2ci9efj7g0it8tk4%40group.calendar.google.com&ctz=Europe%2FBrussels",
},
{
source: "/(.*)",
has: [
{
type: "host",
value: "zoom.dao.brussels",
},
],
permanent: false,
destination: "https://us02web.zoom.us/j/6025635806",
},
{
source: "/(.*)",
has: [
{
type: "host",
value: "telegram.dao.brussels",
},
],
permanent: false,
destination: "https://t.me/joinchat/5NbP0-Vl5Vg3MTgx",
},
];
},
};