Static assets

Versioned asset host

Serves immutable build output for internal applications. Bundle 2.14.2 · directory listing disabled · updated 2026-07-26

Addressing

Every file is content-addressed at build time, so a path never changes meaning. Reference the full versioned path and let it cache forever:

/v3/app.7c1f9a2e.js
/v3/app.4b8d0c33.css
/v3/fonts/inter-var.2f61.woff2

Unversioned aliases such as /v3/app.js are intentionally absent — an alias would have to be revalidated on every page load, which defeats the point.

Cache policy

PathCache-ControlNotes
/v3/*.[hash].*public, max-age=31536000, immutableNever revalidated
/v3/manifest.jsonpublic, max-age=60Maps names to hashes
/healthno-storePlain 200, no body

Notes for consumers

IntegrityHashes are published in the manifest, so a subresource integrity attribute can be generated at build time.
CompressionBrotli and gzip variants are precompressed; the correct one is negotiated per request.
RetentionOld bundles stay reachable for 180 days so a slow client on a cached page never hits a 404.
CORSFonts and JSON are served with a permissive origin header; nothing here is user-specific.