You can use Edge Functions to return a JSON response by returning Response.json()
with a JavaScript object — no need to
JSON.stringify
!
Edge Functions are files held in the netlify/edge-functions
directory.
import type { Context } from "@netlify/edge-functions";
export default async (request: Request, context: Context) => {
return Response.json({ hello: "world" });
};
You can deploy this and all the other examples in this repo as a site of your own to explore and experiment with, by clicking this button.