chore: debug
This commit is contained in:
parent
e21b37c306
commit
511b67a1c8
1 changed files with 14 additions and 0 deletions
14
api/debug.js
Normal file
14
api/debug.js
Normal file
|
@ -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',
|
||||
}
|
Reference in a new issue