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