Last active
August 28, 2025 10:00
-
-
Save HariantoAtWork/24ebe0b32910fb3e81aeab9995666b0b to your computer and use it in GitHub Desktop.
Disable telemetry ENV VARIABLES
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ==== Global Telemetry Opt-Out ==== | |
| # JS / Frontend frameworks | |
| export NEXT_TELEMETRY_DISABLED=1 | |
| export NG_CLI_ANALYTICS=false | |
| export VERCEL_ANALYTICS_ID= | |
| export SENTRY_DSN= | |
| export GA_DISABLE=true | |
| # Package managers | |
| export NO_UPDATE_NOTIFIER=1 # npm | |
| export YARN_DISABLE_SELF_UPDATE_CHECK=1 | |
| export PNPM_DISABLE_OPTOUT=1 | |
| # Microsoft / .NET | |
| export DOTNET_CLI_TELEMETRY_OPTOUT=1 | |
| # Rust | |
| export CARGO_DISABLE_CREDENTIAL_HELPER=1 | |
| # Python / pip | |
| export PIP_DISABLE_PIP_VERSION_CHECK=1 | |
| # VSCode | |
| export VSCODE_DISABLE_TELEMETRY=1 | |
| # Misc catch-all (some apps respect these if implemented) | |
| export DISABLE_TELEMETRY=1 | |
| export TELEMETRY_OPTOUT=1 | |
| export DO_NOT_TRACK=1 | |
| # Better Auth | |
| export BETTER_AUTH_TELEMETRY=0 | |
| export BETTER_AUTH_TELEMETRY_DEBUG=0 | |
| # Nuxt | |
| NUXT_TELEMETRY_DISABLED=true |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Disables telemetry