summaryrefslogtreecommitdiff
path: root/packages/telemetry/src/post.ts
blob: 6aef03bc91b4890cb0c1c2b14dee4358ad9463d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
const ASTRO_TELEMETRY_ENDPOINT = `https://telemetry.astro.build/api/v1/record`;

export function post(body: Record<string, any>): Promise<any> {
	return fetch(ASTRO_TELEMETRY_ENDPOINT, {
		method: 'POST',
		body: JSON.stringify(body),
		headers: { 'content-type': 'application/json' },
	});
}