chore: debug
This commit is contained in:
parent
370860ee13
commit
8f1f7b77e7
1 changed files with 21 additions and 0 deletions
21
api/event.js
Normal file
21
api/event.js
Normal 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",
|
||||||
|
};
|
Reference in a new issue