Skip to content

Commit

Permalink
Disable Telemetry (vercel#8614)
Browse files Browse the repository at this point in the history
We need to disable telemetry until we figure out how we want to store the data.
  • Loading branch information
Timer committed Sep 3, 2019
1 parent fbf784d commit b587281
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/next/telemetry/storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const TELEMETRY_KEY_SALT = `telemetry.salt`

const { NEXT_TELEMETRY_DISABLED, NEXT_TELEMETRY_DEBUG } = process.env

let isDisabled: boolean = !!NEXT_TELEMETRY_DISABLED
let isDisabled: boolean = true || !!NEXT_TELEMETRY_DISABLED

function notify() {
// No notification needed if telemetry is not enabled
Expand Down

0 comments on commit b587281

Please sign in to comment.