Last week, when the CDN experienced downtime, we temporarily switched from cdn.vidstack.io to jsDelivr. Everything worked well except for one issue with the player bundle served from https://cdn.vidstack.io/player.
It appears the player still imports icons directly from your domain:
import "https://cdn.vidstack.io/icons";
Would it be possible to update this to use jsDelivr instead, for example:
import "https://cdn.jsdelivr.net/npm/media-icons@latest/dist/cdn.js";
This would make the player more resilient, so if there are any future issues with cdn.vidstack.io, the CDN setup would continue working without interruption.
Last week, when the CDN experienced downtime, we temporarily switched from
cdn.vidstack.ioto jsDelivr. Everything worked well except for one issue with the player bundle served fromhttps://cdn.vidstack.io/player.It appears the player still imports icons directly from your domain:
Would it be possible to update this to use jsDelivr instead, for example:
This would make the player more resilient, so if there are any future issues with
cdn.vidstack.io, the CDN setup would continue working without interruption.