astro
Version:
Astro is a modern site builder with web best practices, performance, and DX front-of-mind.
13 lines (12 loc) • 324 B
JavaScript
import { AstroTelemetry } from "@astrojs/telemetry";
import { version as viteVersion } from "vite";
import { ASTRO_VERSION } from "../core/constants.js";
const telemetry = new AstroTelemetry({
astroVersion: ASTRO_VERSION,
viteVersion
});
export * from "./error.js";
export * from "./session.js";
export {
telemetry
};