clojurescript

Aviv 2024-11-07T13:25:03.887929Z

Hey, i’m trying to import the font-awesome library and it returns nil, any idea why? ["@fortawesome/fontawesome-svg-core" :refer [library]] https://docs.fontawesome.com/apis/javascript/import-icons Thanks šŸ™

neural 2024-11-07T14:06:27.276459Z

Try ["@fortawesome/fontawesome-svg-core" :as font] And then use font/library

thheller 2024-11-07T14:08:20.169179Z

font/library is the same as the :refer above, but to find out what it actually is exporting do ["@fortawesome/fontawesome-svg-core" :as font] in the ns and then (js/console.log font) directly below the ns form

thheller 2024-11-07T14:08:30.946149Z

also check the console for errors. it might just fail loading

āœ”ļø 1
Aviv 2024-11-10T08:58:06.753539Z

Thanks, it was something related to webpack (the package was missing) šŸ™