> For the complete documentation index, see [llms.txt](https://safronman.gitbook.io/deploy/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://safronman.gitbook.io/deploy/vercel.md).

# Vercel

Deploy NodeJs to Vercel\
<https://dev.to/adafycheng/deploy-nodejs-application-to-vercel-in-5-minutes-171m>

**Настройки для NestJS (vercel.json)**

<pre class="language-json" data-title="vercel.json" data-overflow="wrap" data-line-numbers><code class="lang-json"><strong>{
</strong>  "version": 2,
  "name": "exams-back-2",
  "builds": [
    {
      "src": "src/main.ts",
      "use": "@vercel/node"
    }
  ],
  "routes": [
    {
      "src": "/(.*)",
      "dest": "src/main.ts"
    }
  ]
}

</code></pre>
