-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnext.config.js
123 lines (122 loc) · 4.31 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
module.exports = {
reactStrictMode: true,
async redirects() {
return [
{
source:
"/quest-view/how-do-we-solve-mental-health-related-issues/305131452190687304",
destination:
"/quest-view/how-do-we-solve-mental-health-related-issues/306412096477724742",
permanent: true,
},
{
source: "/quest-view/solving-the-math-problem-3x-1/305721403310604355",
destination:
"/quest-view/solving-the-math-problem-3x-1/306412034676752455",
permanent: true,
},
{
source:
"/quest-view/how-can-we-optimize-human-brain-and-body-function-for-optimal-health-and-longevity/305780166775275592",
destination:
"/quest-view/how-can-we-optimize-human-brain-and-body-function-for-optimal-health-and-longevity/306411980279775304",
permanent: true,
},
{
source:
"/quest-view/why-is-there-something-rather-than-nothing-or-why-is-there-so-much-of-everything/305840644850450504",
destination:
"/quest-view/why-is-there-something-rather-than-nothing-or-why-is-there-so-much-of-everything/306411930555252808",
permanent: true,
},
{
source:
"/quest-view/how-do-we-create-a-world-where-north-korea-participates-and-collaborates-with-the-rest-of-the-world/305869153548369992",
destination:
"/quest-view/how-do-we-create-a-world-where-north-korea-participates-and-collaborates-with-the-rest-of-the-world/306411884330876998",
permanent: true,
},
{
source:
"/quest-view/can-we-extend-the-human-life-span-over-100-years/305876950682959942",
destination:
"/quest-view/can-we-extend-the-human-life-span-over-100-years/306411848300757063",
permanent: true,
},
{
source:
"/quest-view/what-do-we-do-about-ai-auto-cults/305966136562810950",
destination:
"/quest-view/what-do-we-do-about-ai-auto-cults/306411748393484360",
permanent: true,
},
{
source:
"/quest-view/what-can-we-learn-from-our-dreams-what-do-they-tell-us-about-ourselves/306358891762942024",
destination:
"/quest-view/what-can-we-learn-from-our-dreams-what-do-they-tell-us-about-ourselves/306411703237607496",
permanent: true,
},
{
source:
"/quest-view/how-do-we-push-human-collaboration-and-cognition-forward/306095069354524742",
destination:
"/quest-view/how-do-we-push-human-collaboration-and-cognition-forward/306411647418761286",
permanent: true,
},
{
source: "/hero/cadell-last/306359614181474374",
destination: "/hero/cadell-last/306415975419347016",
permanent: true,
},
{
source: "/hero/conor-white-sullivan/306096364050186311",
destination: "/hero/conor-white-sullivan/306416052813692998",
permanent: true,
},
{
source: "/hero/terence-tao/305723816478244936",
destination: "/hero/terence-tao/306414015128535112",
permanent: true,
},
{
source: "/hero/andrew-d-huberman/305785246099439687",
destination: "/hero/andrew-d-huberman/306414192012820552",
permanent: true,
},
{
source: "/hero/wim-hof/305780511384535110",
destination: "/hero/wim-hof/306415237722013768",
permanent: true,
},
{
source: "/hero/alexander-bard/305843528743780422",
destination: "/hero/alexander-bard/306415433821454407",
permanent: true,
},
{
source: "/hero/park-yeon-mi/305869486537310280",
destination: "/hero/park-yeon-mi/306415611830861896",
permanent: true,
},
{
source: "/hero/laura-deming/306141389097271366",
destination: "/hero/laura-deming/306415740391522374",
permanent: true,
},
{
source: "/hero/david-a-sinclair/305877272617812039",
destination: "/hero/david-a-sinclair/306415853305331784",
permanent: true,
},
{
source: "/hero/daniel-schmachtenberger/306097835273617479",
destination: "/hero/daniel-schmachtenberger/306416127391563847",
permanent: true,
},
];
},
images: {
domains: ["res.cloudinary.com", "preview.redd.it"],
},
};