Files
gh-christianlouis-docuelevate/frontend/static/js/fontawesome-loader.js
T
2026-02-13 09:12:11 +00:00

13 lines
330 B
JavaScript

/*
* 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');
})();