-
Notifications
You must be signed in to change notification settings - Fork 44
/
now.json
25 lines (25 loc) · 975 Bytes
/
now.json
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
{
"public": false,
"name": "Tableau-Extension-ExportAll",
"alias": ["exportallextension.theinformationlab.io"],
"version": 2,
"regions": ["all"],
"routes": [
{ "src": "/exportall.html", "status": 301, "headers": { "Location": "/" }},
{ "src": "/ExportAll.trex", "status": 200,
"headers": {
"Content-Type": "application/octet-stream",
"Content-Description": "File Transfer",
"Content-Disposition": "Content-Disposition"
}
},
{ "src": "/download", "status": 301, "headers": { "Location": "/ExportAll.trex" }},
{ "src": "^/js/(.*)", "dest": "/js/$1" },
{ "src": "^/static/css/(.*)", "dest": "/static/css/$1" },
{ "src": "^/static/js/(.*)", "dest": "/static/js/$1" },
{ "src": "^/static/media/(.*)", "dest": "/static/media/$1" },
{ "src": "^/manifest.json", "dest": "/manifest.json" },
{ "src": "^/favicon.ico", "dest": "/favicon.ico" },
{ "src": ".*", "dest": "/index.html" }
]
}