-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstaticwebapp.config.json
More file actions
77 lines (77 loc) · 2.52 KB
/
Copy pathstaticwebapp.config.json
File metadata and controls
77 lines (77 loc) · 2.52 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"navigationFallback": {
"rewrite": "/index.html",
"exclude": ["/assets/*", "/*.{css,scss,js,png,gif,ico,jpg,svg,webp,json}"]
},
"routes": [
{
"route": "/sign-up",
"rewrite": "/index.html"
},
{
"route": "/sign-in",
"rewrite": "/index.html"
},
{
"route": "/admin",
"rewrite": "/index.html"
},
{
"route": "/member-dashboard",
"rewrite": "/index.html"
},
{
"route": "/guest-dashboard",
"rewrite": "/index.html"
},
{
"route": "/vendor-dashboard",
"rewrite": "/index.html"
},
{
"route": "/contributor-dashboard",
"rewrite": "/index.html"
},
{
"route": "/no-access",
"rewrite": "/index.html"
}
],
"responseOverrides": {
"404": {
"rewrite": "/index.html",
"statusCode": 200
}
},
"mimeTypes": {
".json": "application/json",
".js": "text/javascript",
".css": "text/css",
".html": "text/html",
".png": "image/png",
".jpg": "image/jpeg",
".svg": "image/svg+xml"
},
"globalHeaders": {
"content-security-policy": "default-src 'self' https://*.clerk.accounts.dev https://*.clerk.com https://api.elegant.ux.wimsup.com https://api.elegant.admin.wimsup.com https://api.elegant.stripe.wimsup.com https://api.elegant.postmark.wimsup.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://singular-cattle-54.clerk.accounts.dev https://*.clerk.accounts.dev https://*.clerk.com https://challenges.cloudflare.com https://js.stripe.com; style-src 'self' 'unsafe-inline'; img-src 'self' data: https: https://img.clerk.com; font-src 'self' data:; connect-src 'self' https://singular-cattle-54.clerk.accounts.dev https://*.clerk.accounts.dev https://*.clerk.com https://api.elegant.ux.wimsup.com https://api.elegant.admin.wimsup.com https://api.elegant.stripe.wimsup.com https://api.elegant.postmark.wimsup.com https://api.stripe.com; frame-src https://js.stripe.com https://hooks.stripe.com; worker-src 'self' blob:",
"Access-Control-Allow-Origin": "https://www.tampamineralscience.org",
"Access-Control-Allow-Headers": "Authorization, Content-Type",
"Access-Control-Allow-Methods": "GET, POST, OPTIONS"
},
"routes": [
{
"route": "/index.html",
"headers": {
"Cache-Control": "no-cache, no-store, must-revalidate",
"Pragma": "no-cache",
"Expires": "0"
}
},
{
"route": "/assets/*",
"headers": {
"Cache-Control": "public, max-age=31536000, immutable"
}
}
]
}