chore: debug

This commit is contained in:
Cory Dransfeldt 2024-03-24 09:50:55 -07:00
parent 370860ee13
commit 8f1f7b77e7
No known key found for this signature in database

21
api/event.js Normal file
View file

@ -0,0 +1,21 @@
export default async (request, context) => {
fetch(`https://cdn.usefathom.com/?h=${encodeURIComponent(request['referer'] || 'unknown')}&sid=CWSVCDJC&cid=${context['requestId']}`)
.then((data) => {
console.log(data)
return {}
})
.catch(err => {
console.log(err);
return {}
});
return new Response(JSON.stringify({
status: 'success',
}),
{ headers: { "Content-Type": "application/json" } }
)
}
export const config = {
path: "/api/event",
};