-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathvercel.json
17 lines (16 loc) · 972 Bytes
/
vercel.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"installCommand": "dnf -y install golang ; hugo mod npm pack ; npm i -D postcss postcss-cli autoprefixer; npm i",
"buildCommand": "echo VERCEL_GIT_COMMIT_REF=$VERCEL_GIT_COMMIT_REF; if [ \"$VERCEL_GIT_COMMIT_REF\" == \"gh-pages\" ]; then echo \"Skipping build\" && exit 0; else echo \"Looking for build script\" && test -f vercel-build.sh && chmod +x vercel-build.sh && ./vercel-build.sh; fi; ",
"cleanUrls": true,
"headers": [
{
"source": "/(.*)",
"headers": [
{ "key": "Access-Control-Allow-Credentials", "value": "true" },
{ "key": "Access-Control-Allow-Origin", "value": "*" },
{ "key": "Access-Control-Allow-Methods", "value": "GET,OPTIONS,PATCH,DELETE,POST,PUT" },
{ "key": "Access-Control-Allow-Headers", "value": "X-CSRF-Token, X-Requested-With, Accept, Accept-Version, Content-Length, Content-MD5, Content-Type, Date, X-Api-Version" }
]
}
]
}