Files
dd0c-site/node_modules/@astrojs/telemetry/dist/post.js

12 lines
276 B
JavaScript
Raw Normal View History

2026-03-22 20:00:13 +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
};