-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
71 lines (71 loc) · 2.21 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
module.exports = {
async redirects() {
return [
{
source: "/donate",
destination: "https://donorbox.org/ataraxia-project-envision-us/",
permanent: true,
},
{
source: "/papers/armstrong",
destination:
"https://drive.google.com/file/d/1KE9h4wrsUUMVDqtY2SEg0APCWiq76Sl9/view?usp=sharing",
permanent: true,
},
{
source: "/papers/allen",
destination:
"https://drive.google.com/file/d/11bXDzVEVUe9b3ql4DCwYR2Eh_xB893sK/view?usp=sharing",
permanent: true,
},
{
source: "/papers/erlangsen",
destination:
"https://drive.google.com/file/d/1I58ZyUdNqldIXOpg5phJtB3YsWg3G0sI/view?usp=sharing",
permanent: true,
},
{
source: "/papers/neurodiversity-clinicians-scientists",
destination:
"https://drive.google.com/file/d/1ntY8OGLHDtzEG4G-sHKBClno3tF39oEi/view",
permanent: true,
},
{
source: "/papers/neurodiversity-in-medicine",
destination:
"https://www1.racgp.org.au/getattachment/6fbb08b7-0378-4ef5-905a-d89e56900bcd/Embracing-neurodiversity-in-medicine.aspx",
permanent: true,
},
{
source: "/papers/marks2019",
destination:
"https://drive.google.com/file/d/1sFCP_wo4dg545PfjhWFlOeSBtPYro874/view?usp=sharing",
permanent: true,
},
{
source: "/papers/packin2020",
destination:
"https://drive.google.com/file/d/1MTmKcsWIQA2KFigJBBbyJaMtI0fNLMfx/view?usp=sharing",
permanent: true,
},
{
source: "/blog-submit",
destination:
"https://docs.google.com/forms/d/e/1FAIpQLSc_TvWiCG3y-w3FesxxWfxUJnefdG1opmGPxMwJ2Iz92RlPaw/viewform?usp=sf_link",
permanent: true,
},
{
source: "/contact",
destination:
"mailto:saurish@envisionnew.org?cc=shehbaz.virk@envisionnew.org&subject=Ataraxia: Contact",
permanent: true,
},
{
source: "/podcast",
destination:
"https://open.spotify.com/show/4U8uJhkkXDlCQkraemyfcs?si=QgNnTib1TG2c6mxx0teM2Q&dl_branch=1",
permanent: true,
},
];
},
};