-
-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathvercel.json
More file actions
38 lines (38 loc) · 851 Bytes
/
vercel.json
File metadata and controls
38 lines (38 loc) · 851 Bytes
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
{
"buildCommand": "npm run build",
"outputDirectory": "dist",
"public": true,
"redirects": [
{
"source": "/tools",
"destination": "/",
"permanent": true
}
],
"rewrites": [
{
"source": "/api/(.*)",
"destination": "https://app.collectiveai.tools/api/$1"
},
{
"source": "/sitemap.xml",
"destination": "https://app.collectiveai.tools/api/sitemap.xml"
},
{
"source": "/robots.txt",
"destination": "https://app.collectiveai.tools/api/robots.txt"
},
{
"source": "/ai-data.json",
"destination": "https://app.collectiveai.tools/api/ai-data"
},
{
"source": "/ai-manifest.json",
"destination": "https://app.collectiveai.tools/api/ai-manifest"
},
{
"source": "/(.*)",
"destination": "/index.html"
}
]
}