This repo provides an example for deploying a serverless function on Vercel. This repository was created using the Serverless Function Quickstart. Additionally, this project uses the How can I enable CORS on Vercel? guide, specifically the section on configuring CORS headers with vercel.json
.
In the /api
directory there are two files: one JavaScript/Node endpoint (api/js.js
) and one TypeScript endpoint (api/ts.ts
). The functions return a small JSON response, for example:
{
"hello": "javascript"
}
CORS headers are configured using vercel.json
.
To run locally using the the Vercel CLI.
npx vercel dev
Each endpoint can be found at the following localhost URLs:
This example is deployed on Vercel at the following URLs: