diff --git a/api/event.js b/api/event.js new file mode 100644 index 00000000..eca1ac7d --- /dev/null +++ b/api/event.js @@ -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", +}; \ No newline at end of file