Static assets for DTC web properties, served via jsDelivr CDN.
Files are accessible via jsDelivr using tagged releases:
https://cdn.jsdelivr.net/gh/DTC-Inc/static@{tag}/{path}
<!-- Latest release -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/DTC-Inc/static@latest/css/portal.css">
<!-- Specific version -->
<img src="https://cdn.jsdelivr.net/gh/DTC-Inc/static@v1.0.0/brand/logo.svg">
<!-- Development (not cached, don't use in production) -->
<img src="https://cdn.jsdelivr.net/gh/DTC-Inc/static@development/brand/logo.svg">- Tagged versions (
@v1.0.0): permanently cached, immutable @latest: cached ~12 hours, updates when new releases are tagged- Branch names (
@development): cached ~12 hours, use only for testing
brand/ Logos, icons, brand assets
logo.svg
logo-white.svg
favicon.ico
backgrounds/ Background images for web properties
css/ Shared stylesheets
fonts/ Web fonts (if self-hosted)
downloads/ Client-facing downloadable files
- Merge
developmentintorelease - Tag the release:
git tag v1.0.0 && git push --tags - jsDelivr picks up the new tag automatically
- Purge cache if needed:
https://purge.jsdelivr.net/gh/DTC-Inc/static@latest/{path}