Deploying Nx to Vercel
Nx is an extensible build system with support for monorepos, integrations, and Remote Caching on Vercel.
Read the Intro to Nx docs to learn about the benefits of using Nx to manage your monorepos.
If you haven't already connected your monorepo to Nx, you can follow the Getting Started on the Nx docs to do so.
To ensure the best experience using Nx with Vercel, use
nxversion17or later. There are also additional settings if you are using Remote Caching.All Nx starters and examples are preconfigured with these settings.Create a new Project on the Vercel dashboard and import your monorepo project.
Vercel handles all aspects of configuring your monorepo, including setting build commands, the Root Directory, the correct directory for npm workspaces, and the ignored build step.
Your Nx monorepo is now configured and ready to be used with Vercel!
You can now setup Remote Caching for Nx on Vercel or configure additional deployment options, such as environment variables.
nx-ignore provides a way for you to tell Vercel if a build should continue or not. For more details and information on how to use nx-ignore, see the documentation.
Before using remote caching with Nx, ensure the NX_CACHE_DIRECTORY environment variable is set to /tmp/nx-cache.
To configure Remote Caching for your Nx project on Vercel, use the @vercel/remote-nx plugin.
@vercel/remote-nx uses the custom task runner API, which Nx deprecated in v20 and removed in v21. If you're on Nx 20+, see the Nx 20+ section below.- Terminal
pnpm i @vercel/remote-nx In your
nx.jsonfile, add the@vercel/remote-nxrunner totasksRunnerOptions:nx.json{ "tasksRunnerOptions": { "default": { "runner": "@vercel/remote-nx", "options": { "token": "<token>", "teamId": "<teamId>" } } } }You can specify your
tokenandteamIdin yournx.jsonor set them as environment variables.Parameter Description Environment Variable / .env nx.jsonVercel Access Token Vercel access token with access to the provided team NX_VERCEL_REMOTE_CACHE_TOKENtokenVercel Team ID (optional) The Vercel Team ID that should share the Remote Cache NX_VERCEL_REMOTE_CACHE_TEAMteamIdWhen deploying on Vercel, these variables will be automatically set for you.
Clear your local cache and rebuild your project.
Terminalpnpm dlx nx resetTerminalpnpm dlx nx build
Nx 20+ deprecated custom task runners. Remote caching now uses an HTTP-based API instead of npm packages. The @vercel/remote-nx package is not compatible with Nx 20+.
For remote caching on Nx 20+, consider the following options:
- Turborepo: Vercel's build system with built-in remote caching support. If you're evaluating build tools, Turborepo offers the most seamless experience on Vercel.
- Self-hosted remote cache: Build a custom cache server using the Nx OpenAPI specification (Nx 20.8+)
Was this helpful?