From 511b67a1c8d079e4ac4ef8913d2a459225ceccac Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 2 Apr 2024 11:21:15 -0700 Subject: [PATCH] chore: debug --- api/debug.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 api/debug.js 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