diff --git a/api/debug.js b/api/debug.js new file mode 100644 index 00000000..ace5863a --- /dev/null +++ b/api/debug.js @@ -0,0 +1,14 @@ +export default async (context, request) => { + console.log(context) + console.log(request) + + return new Response(JSON.stringify({ + status: 'success', + }), + { headers: { "Content-Type": "application/json" } } + ) +} + +export const config = { + path: '/api/debug', +} \ No newline at end of file