This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/api/event.js
Cory Dransfeldt efd6f7445f
chore: debug
2024-03-24 10:01:35 -07:00

21 lines
No EOL
520 B
JavaScript

export default async (request, context) => {
fetch(`https://cdn.usefathom.com/?h=${encodeURIComponent(request['referer'] || 'https://coryd.dev/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",
};