-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
56 lines (56 loc) · 3.47 KB
/
vercel.json
File metadata and controls
56 lines (56 loc) · 3.47 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
{
"installCommand": "npm run install:zoom && npm run install:web",
"buildCommand": "npm run build",
"outputDirectory": "dist",
"framework": null,
"trailingSlash": false,
"redirects": [
{ "source": "/web", "destination": "/app", "permanent": false }
],
"rewrites": [
{ "source": "/zoom/assets/:path*", "destination": "/zoom/assets/:path*" },
{ "source": "/privacy", "destination": "/zoom/privacy.html" },
{ "source": "/support", "destination": "/zoom/support.html" },
{ "source": "/terms-of-use", "destination": "/zoom/terms-of-use.html" },
{ "source": "/documentation", "destination": "/zoom/documentation.html" },
{ "source": "/zoom/privacy", "destination": "/zoom/privacy.html" },
{ "source": "/zoom/support", "destination": "/zoom/support.html" },
{ "source": "/zoom/terms-of-use", "destination": "/zoom/terms-of-use.html" },
{ "source": "/zoom/documentation", "destination": "/zoom/documentation.html" },
{ "source": "/zoom/backgrounds/:path*", "destination": "/zoom/backgrounds/:path*" },
{ "source": "/backgrounds/:path*", "destination": "/zoom/backgrounds/:path*" },
{ "source": "/zoom", "destination": "/zoom/index.html" },
{ "source": "/zoom/:path*", "destination": "/zoom/index.html" },
{ "source": "/toastmasters-timer-role-guide", "destination": "/toastmasters-timer-role-guide.html" },
{ "source": "/toastmasters-speech-types-and-timing", "destination": "/toastmasters-speech-types-and-timing.html" },
{ "source": "/how-to-use-zoom-for-toastmasters", "destination": "/how-to-use-zoom-for-toastmasters.html" },
{ "source": "/toastmasters-timing-chart", "destination": "/toastmasters-timing-chart.html" },
{ "source": "/toastmasters-timer-demo", "destination": "/toastmasters-timer-demo.html" },
{ "source": "/toastmasters-timer-zoom-demo", "destination": "/toastmasters-timer-zoom-demo.html" },
{ "source": "/(.*)", "destination": "/index.html" }
],
"headers": [
{
"source": "/(.*)",
"headers": [
{ "key": "Content-Security-Policy", "value": "default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://*.posthog.com https://us-assets.i.posthog.com https://www.youtube.com; style-src 'self' 'unsafe-inline'; img-src 'self' data: https:; font-src 'self' data:; connect-src 'self' https://*.posthog.com https://us.i.posthog.com https://us-assets.i.posthog.com; frame-src 'self' https://www.youtube.com; frame-ancestors 'self'; base-uri 'self'; form-action 'self'" },
{ "key": "X-Content-Type-Options", "value": "nosniff" },
{ "key": "Referrer-Policy", "value": "strict-origin-when-cross-origin" },
{ "key": "Strict-Transport-Security", "value": "max-age=31536000; includeSubdomains" }
]
},
{
"source": "/zoom/(.*)",
"headers": [
{ "key": "Content-Security-Policy", "value": "default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://appssdk.zoom.us https://*.posthog.com https://us-assets.i.posthog.com; style-src 'self' 'unsafe-inline'; img-src 'self' data: https:; font-src 'self' data:; connect-src 'self' https://appssdk.zoom.us https://*.zoom.us https://*.posthog.com https://us.i.posthog.com https://us-assets.i.posthog.com; frame-src 'self' https://*.zoom.us;" }
]
},
{
"source": "/zoom/backgrounds/(.*)",
"headers": [
{ "key": "Cache-Control", "value": "public, max-age=31536000, immutable" },
{ "key": "X-Content-Type-Options", "value": "nosniff" }
]
}
]
}