-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
33 lines (27 loc) · 1.15 KB
/
vercel.json
File metadata and controls
33 lines (27 loc) · 1.15 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
{
"version": 2,
"builds": [
{ "src": "api/**/*.js", "use": "@vercel/node" },
{ "src": "components/**/*.html", "use": "@vercel/static" },
{ "src": "css/**/*.css", "use": "@vercel/static" },
{ "src": "js/**/*.js", "use": "@vercel/static" },
{ "src": "notes/js/**/*.js", "use": "@vercel/static" },
{ "src": "posts/js/**/*.js", "use": "@vercel/static" },
{ "src": "projects/js/**/*.js", "use": "@vercel/static" },
{ "src": "assets/images/**/*", "use": "@vercel/static" },
{ "src": "posts/entries/**/*.md", "use": "@vercel/static" },
{ "src": "notes/courses/**/*", "use": "@vercel/static" },
{ "src": "projects/metadata.json", "use": "@vercel/static" },
{ "src": "posts/metadata/**/*.json", "use": "@vercel/static" },
{ "src": "notes/metadata/**/*.json", "use": "@vercel/static" },
{ "src": "*.html", "use": "@vercel/static" }
],
"headers": [
{
"source": "/(.*)",
"headers": [
{ "key": "X-Robots-Tag", "value": "noai,noimageai" }
]
}
]
}