mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
10 lines
181 B
JavaScript
10 lines
181 B
JavaScript
import 'dotenv/config';
|
|
import { sendTelemetry } from './telemetry';
|
|
|
|
async function run() {
|
|
if (!process.env.DISABLE_TELEMETRY) {
|
|
await sendTelemetry('build');
|
|
}
|
|
}
|
|
|
|
run();
|