-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvercel.json
More file actions
92 lines (92 loc) · 2.22 KB
/
vercel.json
File metadata and controls
92 lines (92 loc) · 2.22 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"version": 2,
"env": {
"IS_NOW": "true",
"CONTENTFUL_SPACE_ID": "@contentful-space-id",
"CONTENTFUL_TOKEN": "@contentful-web-access-token",
"STYLIS_SHOULD_PREFIX": "false",
"GOOGLE_TAG_MANAGER_AMP_ID": "GTM-WHL4TS3",
"GOOGLE_TAG_MANAGER_WEB_ID": "GTM-P58WR63",
"GRAPHQL_API_URL": "https://modern-stack-skeletons-graphql.aretecode.now.sh/graphql"
},
"routes": [
{
"src": "^/service-worker.js$",
"dest": "/_next/static/service-worker.js",
"headers": {
"cache-control": "public, max-age=43200, immutable",
"Service-Worker-Allowed": "/"
}
},
{
"src": "/graphql",
"dest": "https://jameswiens-graphql.now.sh/graphql"
},
{
"src": "/Resume",
"dest": "/Portfolio"
},
{
"src": "/manifest.json",
"dest": "/_next/static/manifest.json",
"headers": {
"cache-control": "max-age=43200, s-maxage=86400"
}
},
{
"src": "/sitemap.xml",
"dest": "/_next/static/sitemap.xml",
"headers": {
"cache-control": "max-age=43200, s-maxage=86400"
}
},
{
"src": "/robots.txt",
"dest": "/_next/static/robots.txt",
"headers": {
"cache-control": "max-age=43200, s-maxage=86400"
}
},
{
"src": "/favicon.ico",
"dest": "https://noccumpr-cdn.sirv.com/images/james-wiens-icon/favicon.ico",
"headers": {
"cache-control": "max-age=43200, s-maxage=86400"
}
},
{
"src": "/favicon.png",
"dest": "https://noccumpr-cdn.sirv.com/images/james-wiens-icon/james-wiens-code-logo-144x144.png",
"headers": {
"cache-control": "max-age=43200, s-maxage=86400"
}
},
{
"src": "/static/(.*)",
"dest": "/static/$1",
"headers": {
"cache-control": "max-age=43200, s-maxage=86400"
}
},
{
"src": "/public/(.*)",
"dest": "/public/$1",
"headers": {
"cache-control": "max-age=43200, s-maxage=86400"
}
},
{
"src": "/(.*)",
"dest": "/$1",
"headers": {
"cache-control": "max-age=43200, s-maxage=86400"
}
}
],
"builds": [
{
"src": "package.json",
"use": "@vercel/next"
}
]
}