How to import javascript from Gems with webpacker
Ive come across an issue where some gems I want to use (specifically social-share-button) need to have a javascript file imported but with webpacker in rails 6, not quite sure how to do that now
Just import it in app/javascripts/packs/application.js
import "../myfile"
And put your code in app/javascripts/myfile.js
Also check out https://gorails.com/episodes/webpacker-javascript-in-rails-6
ok so just downloaded the javascript file from the gem and did that and everything works...thanks