Consider the following:
https://ezchan.org/
This site uses resources that are not a part of localCDN, which is fine. What isnt fine is that it still serves other versions as if they are interchangeable. Sure, sometimes they are, but only sometimes As you can see serving higher versions of these frameworks break the site.
Now, I'm not expecting to support every single frameklwork verison, however, I think localCDN should have an optiopn for verbose mode where it reports on the pop-up dashboard that there is version mismatch and instead of a green counter make it yellow (orange?) so I can see at a glance what can be the issue.
I spent about 30 minuets trying to understand what exactly broke the site despite localCDN happily reporting that it served all resources locally.
Additional request:
Please add an option to add obscure framework versions esily. I went and collected all the required frameworks only to realize that the helper just fetches pre-defined version instead of what is available in resources:
} else if (type.includes('/bootstrap.css/4.')) {
return '4.4.1';
**Consider the following:**
https://ezchan.org/
This site uses resources that are not a part of localCDN, which is fine. What isnt fine is that it still serves other versions as if they are interchangeable. Sure, sometimes they are, but only sometimes As you can see serving higher versions of these frameworks break the site.
Now, I'm not expecting to support every single frameklwork verison, however, I think localCDN should have an optiopn for `verbose` mode where it reports on the pop-up dashboard that there is version mismatch and instead of a green counter make it yellow (orange?) so I can see at a glance what can be the issue.
I spent about 30 minuets trying to understand what exactly broke the site despite localCDN happily reporting that it served all resources locally.
**Additional request:**
Please add an option to add obscure framework versions esily. I went and collected all the required frameworks only to realize that the helper just fetches pre-defined version instead of what is available in resources:
```js
} else if (type.includes('/bootstrap.css/4.')) {
return '4.4.1';
```