We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16d9780 commit 9e50834Copy full SHA for 9e50834
netlify/edge-functions/edge-enhance.ts
@@ -11,6 +11,7 @@ import {
11
await initialize();
12
13
export default async (request: Request) => {
14
+ console.log(request);
15
if (request.method === "POST") {
16
try {
17
const form = await multiParser(request);
@@ -68,4 +69,4 @@ export default async (request: Request) => {
68
69
return new Response("Method Not Allowed", { status: 405 });
70
};
71
-export const config = { path: "/api/edge-detection" };
72
+export const config = { path: "/api/edge-enhance" };
0 commit comments