-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathvercel.json
More file actions
63 lines (63 loc) · 1.11 KB
/
Copy pathvercel.json
File metadata and controls
63 lines (63 loc) · 1.11 KB
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
{
"framework": "astro",
"installCommand": "bun install",
"buildCommand": "bun run build",
"redirects": [
{
"source": "/doc/:match*",
"destination": "/app/doc/:match*",
"permanent": true
},
{
"source": "/spaces/:match*",
"destination": "/app/spaces/:match*",
"permanent": true
},
{
"source": "/settings",
"destination": "/app/settings",
"permanent": true
},
{
"source": "/settings/:match*",
"destination": "/app/settings/:match*",
"permanent": true
},
{
"source": "/privacy",
"destination": "/app/privacy",
"permanent": true
},
{
"source": "/imprint",
"destination": "/app/imprint",
"permanent": true
},
{
"source": "/welcome",
"destination": "/app/welcome",
"permanent": true
},
{
"source": "/new",
"destination": "/app/new",
"permanent": true
},
{
"source": "/local",
"destination": "/app/local",
"permanent": true
},
{
"source": "/tutor/:slug",
"destination": "/app/tutor/:slug",
"permanent": true
}
],
"rewrites": [
{
"source": "/app/:match*",
"destination": "/app/index.html"
}
]
}