vercel-nest

0.0.7 • Public • Published

Vercel-nest

Vercel builder for Nestjs

Help you to deploy Nestjs application on Vercel in SSR mode

Usage

1. Add build command to package.json

{
  "scripts": {
    "build": "nest build"
  }
}

1. Configure vercel-nest as builder in vercel.json

Add a vercel.json file to your project root path

{
  "builds": [
    {
      "src": "package.json",
      "use": "vercel-nest"
    }
  ]
}

Support Swagger-ui

{
  "builds": [
    {
      "src": "package.json",
      "use": "vercel-nest",
      "config": {
        // change "docs" to your 'path' of SwaggerModule.setup(path, app, document);
        "swagger": "docs"
      }
    }
  ]
}

How to work

  1. Using the npm run build command to build the project. You need to define the build command in your package.json, for example:
{
  "scripts": {
    "build": "nest build"
  }
}
  1. Using dist/main.js as the entry point of the program, and retrieve all its dependency files to build the Vercel Lambda function, named index.

  2. Define a routes to forward all requests to index.

Readme

Keywords

none

Package Sidebar

Install

npm i vercel-nest

Weekly Downloads

1

Version

0.0.7

License

MIT

Unpacked Size

14.9 kB

Total Files

3

Last publish

Collaborators

  • dongwa