Make sure images are excluded from the Vercel build (#79)
This commit is contained in:
parent
ddd4c70ced
commit
4710dfbd20
|
@ -1,3 +1,4 @@
|
||||||
.vscode
|
.vscode
|
||||||
.vercel
|
.vercel
|
||||||
.env
|
.env
|
||||||
|
.venv
|
||||||
|
|
|
@ -1 +1,7 @@
|
||||||
|
.vscode
|
||||||
|
.vercel
|
||||||
|
.env
|
||||||
|
.venv
|
||||||
|
|
||||||
|
.github
|
||||||
images
|
images
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
{
|
{
|
||||||
"functions": {
|
"functions": {
|
||||||
"api/index.php": {
|
"api/index.php": {
|
||||||
"runtime": "vercel-php@0.5.2"
|
"runtime": "vercel-php@0.5.2",
|
||||||
|
"excludeFiles": "{images/**,.github/**}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"routes": [{ "src": "/(.*)", "dest": "/api/index.php" }],
|
"routes": [{ "src": "/(.*)", "dest": "/api/index.php" }],
|
||||||
|
|
Loading…
Reference in New Issue