-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvercel.json
86 lines (86 loc) · 1.9 KB
/
vercel.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
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
78
79
80
81
82
83
84
85
86
{
"headers": [
{
"source": "/(.*)",
"headers": [
{
"key": "Cache-Control",
"value": "public, max-age=300"
}
]
},
{
"source": "/static/(.*)",
"headers": [
{
"key": "Cache-Control",
"value": "public, max-age=31536000"
}
]
},
{
"source": "/(.*)\\.(css|js|gif)",
"headers": [
{
"key": "Cache-Control",
"value": "public, max-age=31536000"
}
]
},
{
"source": "/favicon.ico",
"headers": [
{
"key": "Cache-Control",
"value": "public, max-age=604800"
}
]
},
{
"source": "/atom.xml",
"headers": [
{
"key": "Content-Type",
"value": "application/atom+xml"
}
]
},
{
"source": "/rss.xml",
"headers": [
{
"key": "Content-Type",
"value": "application/rss+xml"
}
]
}
],
"redirects": [
{
"source": "/post/61715078272/why-i-left-liffft/",
"destination": "/why-i-left-liffft/",
"permanent": true
},
{
"source": "/post/63443899879/how-not-to-do-customer-service-credit-card-edition/",
"destination": "/how-not-to-do-customer-service-credit-card-edition/",
"permanent": true
},
{
"source": "/post/62754570686/my-standard-breakfast/",
"destination": "/my-standard-breakfast/",
"permanent": true
},
{
"source": "/post/45926203417/12-things-i-learned-from-microsoft/",
"destination": "/12-things-i-learned-from-microsoft/",
"permanent": true
},
{
"source": "/post/44894026746/dont-let-this-happen-to-you-lessons-from-a-failed/",
"destination": "/dont-let-this-happen-to-you-lessons-from-a-failed-side-project/",
"permanent": true
}
],
"trailingSlash": true
}