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

12 lines
276 B
Plaintext

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
};