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 š
Try ["@fortawesome/fontawesome-svg-core" :as font]
And then use font/library
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
also check the console for errors. it might just fail loading
Thanks, it was something related to webpack (the package was missing) š