Tighten CSP (object-src) and Permissions-Policy; allow Vercel Analytics origin#58
Merged
lwwmanning merged 2 commits intomainfrom May 4, 2026
Merged
Tighten CSP (object-src) and Permissions-Policy; allow Vercel Analytics origin#58lwwmanning merged 2 commits intomainfrom
lwwmanning merged 2 commits intomainfrom
Conversation
…cs origin Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> Signed-off-by: Will Manning <will@willmanning.io>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> Signed-off-by: Will Manning <will@willmanning.io>
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
object-src 'none'— explicitly deny<object>,<embed>,<applet>content. The site doesn't use any of these; this is a free defensive directive.script-srcaddsva.vercel-scripts.com—@vercel/analyticsv2 loads its bootstrap script from this origin. Without an explicit allow, the script is blocked by CSP and analytics events stop reachingvitals.vercel-insights.com.gyroscope=(),usb=(),magnetometer=(),accelerometer=()alongside the existing camera/microphone/geolocation/payment denials. None of these APIs are used by the site; broader denial reduces the risk surface if a third-party script is ever introduced.No behavioral change to first-party flows. Plausible analytics, the WebGL hero, and the velite blog all continue to work under the existing
'self' 'unsafe-inline' plausible.ioscript policy. Thenew Function()eval inMDXRendererruns server-side, so'unsafe-eval'remains correctly absent.Test plan
/,/blog,/blog/<slug>,/404with DevTools open — no CSP violations in consolevitals.vercel-insights.comreturns 200)curl -sI <preview-url>/shows the newPermissions-Policydirectives andobject-src 'none'in the CSP header🤖 Generated with Claude Code