-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvercel.json
More file actions
24 lines (24 loc) · 752 Bytes
/
Copy pathvercel.json
File metadata and controls
24 lines (24 loc) · 752 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
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"framework": null,
"buildCommand": null,
"installCommand": null,
"outputDirectory": "smoothride/demo",
"trailingSlash": false,
"redirects": [
{ "source": "/", "destination": "/cesium/index.html" },
{ "source": "/sim", "destination": "/cesium/index.html" },
{ "source": "/cesium", "destination": "/cesium/index.html" },
{ "source": "/landing", "destination": "/landing.html" }
],
"headers": [
{
"source": "/cesium/assets/(.*).glb",
"headers": [{ "key": "Content-Type", "value": "model/gltf-binary" }]
},
{
"source": "/(.*).json",
"headers": [{ "key": "Cache-Control", "value": "public, max-age=0, must-revalidate" }]
}
]
}