-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
34 lines (33 loc) · 2.32 KB
/
vercel.json
File metadata and controls
34 lines (33 loc) · 2.32 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
{
"version": 2,
"builds": [
{ "src": "server.js", "use": "@vercel/node" },
{ "src": "client/package.json", "use": "@vercel/static-build", "config": { "distDir": "build" } }
],
"routes": [
{ "src": "/api/(.*)", "dest": "server.js" },
{ "src": "/youtube-transcript.html", "status": 301, "headers": { "Location": "/youtube-transcript" } },
{ "src": "/youtube-summarizer.html", "status": 301, "headers": { "Location": "/youtube-summarizer" } },
{ "src": "/vimeo-transcript.html", "status": 301, "headers": { "Location": "/vimeo-transcript" } },
{ "src": "/tiktok-transcript.html", "status": 301, "headers": { "Location": "/tiktok-transcript" } },
{ "src": "/loom-transcript.html", "status": 301, "headers": { "Location": "/loom-transcript" } },
{ "src": "/instagram-transcript.html", "status": 301, "headers": { "Location": "/instagram-transcript" } },
{ "src": "/facebook-transcript.html", "status": 301, "headers": { "Location": "/facebook-transcript" } },
{ "src": "/twitter-transcript.html", "status": 301, "headers": { "Location": "/twitter-transcript" } },
{ "src": "/transcribe-audio.html", "status": 301, "headers": { "Location": "/transcribe-audio" } },
{ "src": "/transcribe-video.html", "status": 301, "headers": { "Location": "/transcribe-video" } },
{ "src": "/privacy.html", "status": 301, "headers": { "Location": "/privacy" } },
{ "src": "/youtube-transcript", "dest": "client/build/youtube-transcript.html" },
{ "src": "/youtube-summarizer", "dest": "client/build/youtube-summarizer.html" },
{ "src": "/vimeo-transcript", "dest": "client/build/vimeo-transcript.html" },
{ "src": "/tiktok-transcript", "dest": "client/build/tiktok-transcript.html" },
{ "src": "/loom-transcript", "dest": "client/build/loom-transcript.html" },
{ "src": "/instagram-transcript", "dest": "client/build/instagram-transcript.html" },
{ "src": "/facebook-transcript", "dest": "client/build/facebook-transcript.html" },
{ "src": "/twitter-transcript", "dest": "client/build/twitter-transcript.html" },
{ "src": "/transcribe-audio", "dest": "client/build/transcribe-audio.html" },
{ "src": "/transcribe-video", "dest": "client/build/transcribe-video.html" },
{ "src": "/privacy", "dest": "client/build/privacy.html" },
{ "src": "/(.*)", "dest": "client/build/$1" }
]
}