Deploy Angular19 SSR to Vercel with Serverless Functions

In this article, we will deploy an Angular19 SSR project to Vercel with serverless functions. Vercel is a cloud platform for static sites and Serverless Functions that fits perfectly with Angular19 SSR. It is a great choice for deploying Angular19 SSR projects.

Prerequisite knowledge

  1. In Angular 19, if you create a project using the command ng new your-project-name --ssr, after running ng build, there will be two subfolders under the 'dist' folder. In these two folders, the 'index.html' file, which was common in previous versions, is absent.
  2. When running locally on a personal computer, we execute 'node dist/your-project-name /server/server.mjs'. When deploying to a remote server, we need to use serverless functions to run the node command.

Test locally

I have intentionally prerendered three products with IDs (1, 2, 3), while other product pages are generated through Static Site Generation (SSG), as shown in the image below. The server-side rendered page source contains the complete data. This eliminates the need for the browser to download and parse JavaScript, significantly improving the page loading speed and enhancing the user experience. prerender ssr1 ssr2

Prepare files needed by Vercel function

  1. Export app in server.ts server.ts
  2. Create api folder and create index.js. The full file path is : your-project-name/api/index.js. index.js
  3. Create vercel.json under project. Then full file path is: your-project-name/vercel.json vercel.json
  4. Push source code to github and deploy angular app on Vercel platform.(I skipped this step)
  5. My source code is located:GitHub

Conclusion

Deploying an SSR - rendered application is more intricate than deploying a static web app. We must adhere to the documentation for different deployment platforms.