astro-ghostcms/.pnpm-store/v3/files/f8/3c22a5e1119bfba78f53796279e...

12 lines
276 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
const ASTRO_TELEMETRY_ENDPOINT = `https://telemetry.astro.build/api/v1/record`;
function post(body) {
return fetch(ASTRO_TELEMETRY_ENDPOINT, {
method: "POST",
body: JSON.stringify(body),
headers: { "content-type": "application/json" }
});
}
export {
post
};