Deploying Nuxt applications to Vercel

Configure your Nuxt application appropriately for Vercel deployment

In your application's nuxt.config.ts file, ensure that the nitro property is configured to use the vercel preset, and that the output.dir property is set to the appropriate directory. The directory that Vercel expects to find the application's build output (as explained in the Vercel documentation) in is .vercel/output at the root of the repository/workspace. So, if your application is located at apps/my-app then the output.dir property should be set to ../../.vercel/output.

For example, if your Nx workspace is structured like this:

1โ”œโ”€โ”€ apps 2โ”‚ย ย  โ””โ”€โ”€ my-app 3โ”‚ย ย  โ”œโ”€โ”€ nuxt.config.ts 4โ”‚ย ย  โ”œโ”€โ”€ src 5โ”‚ย ย  โ”œโ”€โ”€ tsconfig.app.json 6โ”‚ย ย  โ”œโ”€โ”€ tsconfig.json 7โ”‚ย ย  โ”œโ”€โ”€ tsconfig.spec.json 8โ”œโ”€โ”€ nx.json 9โ”œโ”€โ”€ package-lock.json 10โ”œโ”€โ”€ package.json 11โ””โ”€โ”€ tsconfig.base.json 12

Then your nitro configuration should look like this:

apps/my-app/nuxt.config.ts
1 nitro: { 2 preset: 'vercel', 3 output:{ 4 dir: '../../.vercel/output' 5 } 6 }, 7

For Vercel deployment, it does not really matter what the buildDir property in your nuxt.config.ts is set to.

So, your entire nuxt.config.ts file may look something like this:

apps/my-app/nuxt.config.ts
1import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin'; 2import { defineNuxtConfig } from 'nuxt/config'; 3 4export default defineNuxtConfig({ 5 workspaceDir: '../../', 6 srcDir: 'src', 7 devtools: { enabled: true }, 8 buildDir: '../../dist/apps/my-app/.nuxt', 9 devServer: { 10 host: 'localhost', 11 port: 4200, 12 }, 13 typescript: { 14 typeCheck: true, 15 tsConfig: { 16 extends: './tsconfig.app.json', 17 }, 18 }, 19 imports: { 20 autoImport: false, 21 }, 22 css: ['~/assets/css/styles.css'], 23 vite: { 24 plugins: [nxViteTsPaths()], 25 }, 26 nitro: { 27 preset: 'vercel', 28 output: { 29 dir: '../../.vercel/output', 30 }, 31 }, 32}); 33

Configure your Vercel project's settings appropriately

New Vercel project

  1. If you are "importing" your Nx workspace's repository for the first time, make sure you do not choose a root directory as part of the repo selection process (therefore leaving it to be the root of the full repo/workspace)
  2. Ensure the Nuxt.js "Framework Preset" is selected
  3. Expand the "Build & Development Settings" and toggle the override switch for the build command. For example, for an application named my-app the value will look like this:

โฏ

npx nx build my-app --prod

New Vercel Project

Existing Vercel project

If you have an existing project on Vercel then the exact same guidance applies as for the section above, it's just that you will need to update the project's existing settings.

When everything is updated appropriately, for our my-app example we would see the following in our "General" settings UI:

Existing Vercel Project

Skipping build if the application is not affected

One of the core features of Nx is to run code quality checks and builds only for projects that are affected by recent code changes. We can use Vercel's ignored build step feature to only build our application if it is affected.

To build only what's affected, use the npx nx-ignore <app-name> command under Project Settings > Git on Vercel.

Ignore build step

The nx-ignore command uses Nx to detect whether the current commit affects the specified app, and will skip the build if it is not affected.

Next steps

Naturally, you can continue on and set any additional Environment Variables etc that may be appropriate for your projects, but we have now covered the key points needed to deploy Nuxt.js projects from Nx workspaces on Vercel!