Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions i18n/en-US/examples/how-to-deploy-to-vercel.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,17 @@ Add the following `vercel.json` to the root folder in order to redirect all requ

```json
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"version": 2,
"functions": {
"api/nullstack.js": {
"includeFiles": ".production/**"
}
},
"routes": [
"rewrites": [
{
"handle": "filesystem"
},
{
"src": "(.*)",
"dest": "api/nullstack.js"
"source": "(.*)",
"destination": "api/nullstack.js"
}
]
}
Expand Down
10 changes: 4 additions & 6 deletions i18n/pt-BR/articles/como-fazer-deploy-vercel.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,17 @@ Adicione a seguinte configuração no `vercel.json` na raiz da sua aplicação p

```json
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"version": 2,
"functions": {
"api/nullstack.js": {
"includeFiles": ".production/**"
}
},
"routes": [
"rewrites": [
{
"handle": "filesystem"
},
{
"src": "(.*)",
"dest": "api/nullstack.js"
"source": "(.*)",
"destination": "api/nullstack.js"
}
]
}
Expand Down
10 changes: 4 additions & 6 deletions i18n/pt-BR/examples/como-fazer-deploy-vercel.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,17 @@ Adicione a seguinte configuração no `vercel.json` na raiz da sua aplicação p

```json
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"version": 2,
"functions": {
"api/nullstack.js": {
"includeFiles": ".production/**"
}
},
"routes": [
"rewrites": [
{
"handle": "filesystem"
},
{
"src": "(.*)",
"dest": "api/nullstack.js"
"source": "(.*)",
"destination": "api/nullstack.js"
}
]
}
Expand Down