Add Web Analytics self-exclusion via localStorage va-disable - #10
Merged
Conversation
Drop Web Analytics events when localStorage.va-disable is set, matching the official beforeSend opt-out pattern. Guard localStorage so missing or blocked storage cannot crash the client. Co-authored-by: Stephen Wu <wustep@users.noreply.github.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
wustep
marked this pull request as ready for review
August 17, 2026 04:56
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Wires the official Vercel Web Analytics opt-out onto the existing
<Analytics />mount insrc/main.tsx.beforeSendreturnsnullwhenlocalStorage.va-disableis set, otherwise the event is sent unchanged.localStorageis read inside a try/catch so missing or blocked storage cannot crash the client.No second Analytics component, no package change, no UI.
After merge, opt a browser out on stagebench.vercel.app by running this once in the production console (per browser):
To resume tracking:
localStorage.removeItem('va-disable').Visuals
The gallery is visually identical. Stills of production/main vs this branch:
Before (production / main)
Production gallery on stagebench.vercel.app
After (this branch, local Vite)
Branch gallery with beforeSend opt-out
Test plan
pnpm typecheckandpnpm lintclean for this changepnpm test44/44 on Node 24localStorage.va-disableon production and confirm the browser no longer appears in Web AnalyticsTo show artifacts inline, enable in settings.