You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is caused by a recent breaking change in unpkg.com as they started blocking all requests containing a query string.
If you'd like, you are welcome to use jsDelivr CDN, which works in a similar fashion but is strongly focused on production usage and never breaks any existing links.
If you try to load the CSS from a CDN, it fails to load the fonts. The issue is that the CSS file here (which is taken from the docs:
https://unpkg.com/iview@2.0.0/dist/styles/iview.css
Is trying to load the font via a url here:
but that URL returns an "Invalid query: v=2.0.0"
https://unpkg.com/iview@2.0.0/dist/styles/fonts/ionicons.eot?v=2.0.0
If you remove the
?v=2.0.0
from the URL its accessiblehttps://unpkg.com/iview@2.0.0/dist/styles/fonts/ionicons.eot
The text was updated successfully, but these errors were encountered: