-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
40 lines (40 loc) · 1.65 KB
/
vercel.json
File metadata and controls
40 lines (40 loc) · 1.65 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
{
"redirects": [
{ "source": "https://www.aquascript.xyz/(.*)", "destination": "https://aquascript.xyz/$1", "permanent": true },
{ "source": "/index", "destination": "/", "permanent": true }
],
"headers": [
{
"source": "/assets/:all*",
"headers": [
{ "key": "Cache-Control", "value": "public, max-age=31536000, immutable" }
]
},
{
"source": "/api/:all*",
"headers": [
{ "key": "Cache-Control", "value": "public, max-age=86400" }
]
}
],
"rewrites": [
{ "source": "/index", "destination": "/index.html" },
{ "source": "/about", "destination": "/about.html" },
{ "source": "/contact", "destination": "/contact.html" },
{ "source": "/docs", "destination": "/docs.html" },
{ "source": "/book", "destination": "/book.html" },
{ "source": "/booksV2", "destination": "/booksV2.html" },
{ "source": "/moviedata", "destination": "/moviedata.html" },
{ "source": "/moviesdataV2", "destination": "/moviesdataV2.html" },
{ "source": "/quotes", "destination": "/quotes.html" },
{ "source": "/quotesV2", "destination": "/quotesV2.html" },
{ "source": "/jokes", "destination": "/jokes.html" },
{ "source": "/user", "destination": "/user.html" },
{ "source": "/recipes", "destination": "/recipes.html" },
{ "source": "/progm_jokes", "destination": "/progm_jokes.html" },
{ "source": "/songs", "destination": "/songs.html" },
{ "source": "/privacy-policy", "destination": "/privacy-policy.html" },
{ "source": "/term-and-condition", "destination": "/term-and-condition.html" },
{ "source": "/advertisement", "destination": "/advertisement.html" }
]
}