diff --git a/netlify/edge-functions/handle.ts b/netlify/edge-functions/handle.ts deleted file mode 100644 index ec61938..0000000 --- a/netlify/edge-functions/handle.ts +++ /dev/null @@ -1,16 +0,0 @@ -export default async function handleMarkdown( - request: Request, - ctx: any, -): Promise { - const resp = await ctx.next(request); - if (resp.status === 404) { - return new Response("", { - status: 200, - headers: { "Content-Type": "text/markdown" }, - }); - } else { - return resp; - } -} - -export const config = { path: "/*.md" };