fix(angular-ssr): remove invalid "public" property from vercel.json#36212
Conversation
…36211) Vercel's current schema rejects the top-level `public` property, causing the angular-ssr example deployment to fail schema validation at build time. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
Claude finished @fmontes's task in 34s —— View job Rollback Safety Analysis
Result: ✅ Safe to Roll Back The only change in this PR is removing one line from - "public": true,This is a deployment config file for an example project. It touches no database migrations, Elasticsearch mappings, data models, REST/GraphQL API contracts, OSGi interfaces, VTL viewtools, or any other category in the rollback-unsafe reference. The label |
🤖 Bedrock Review —
|
What
Removes the invalid
"public": trueproperty fromexamples/angular-ssr/vercel.json.Why
Vercel's current
vercel.jsonschema no longer accepts a top-levelpublicproperty. Deployments of the angular-ssr example fail at build time with:Fix
Dropped the single offending line. The remaining
rewritesandfunctionsconfig is unchanged and schema-valid.Fixes #36211
🤖 Generated with Claude Code