chore: debug
This commit is contained in:
parent
2163e4087e
commit
23f3bc47e7
1 changed files with 15 additions and 0 deletions
15
api/scrobble.js
Normal file
15
api/scrobble.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
import { getStore } from '@netlify/blobs'
|
||||
|
||||
export default async (request, context) => {
|
||||
console.log(request)
|
||||
console.log(context)
|
||||
return new Response(JSON.stringify({
|
||||
status: 'success',
|
||||
}),
|
||||
{ headers: { "Content-Type": "application/json" } }
|
||||
)
|
||||
}
|
||||
|
||||
export const config = {
|
||||
path: "/api/scrobble",
|
||||
}
|
Reference in a new issue