feat: update version to 0.4.2-dev, add self-hosted Font Awesome loader, and enhance provider status icons
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
/*
|
||||
* Self-hosted Font Awesome loader - loads only what we need
|
||||
*/
|
||||
(function() {
|
||||
// Create link element for CSS
|
||||
const link = document.createElement('link');
|
||||
link.rel = 'stylesheet';
|
||||
link.href = '/static/fontawesome/css/all.min.css';
|
||||
document.head.appendChild(link);
|
||||
|
||||
console.log('Font Awesome loaded locally');
|
||||
})();
|
||||
Reference in New Issue
Block a user