I'm trying to use the JS routes gem with webpacker from Rails 5.1 but can't figure out how to include the js-routes.js.erb
in webpack's app/javascript/packs/application.js
.
import 'js-routes'
leads to
Uncaught Error: Cannot find module "js-routes"
Which likely means that webpack is unable to locate the javascript in the included gem. This is probably connected to this webpacker's github issue.
What is the best workaround for this issue right now?
Thanks!