You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently this repo provides a script that is invoked as part of the Project's Build script to compile an individual endpoint to the Build Output API.
It would be a better fit into the Vercel model to instead have this repo conform to the Runtime API. This would allow for the endpoints within the api directory to be configured to use this Runtime and vc build would automatically download + invoke this Runtime when the project is configured to do so. Example:
// in `vercel.json`{"functions": {"api/*.ts": {"runtime": "[email protected]"}}}
You could see the Deno Runtime (or any of the other repos in this vercel-community org) for inspiration on implementation.
The text was updated successfully, but these errors were encountered:
Currently this repo provides a script that is invoked as part of the Project's Build script to compile an individual endpoint to the Build Output API.
It would be a better fit into the Vercel model to instead have this repo conform to the Runtime API. This would allow for the endpoints within the
api
directory to be configured to use this Runtime andvc build
would automatically download + invoke this Runtime when the project is configured to do so. Example:You could see the Deno Runtime (or any of the other repos in this vercel-community org) for inspiration on implementation.
The text was updated successfully, but these errors were encountered: