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!
Using the technique described in the very advanced setup part of the JsRoutes documentation:
// app/javascript/routes.js.erb
<%= JsRoutes.generate %>
export default this.Routes
And then in your application pack:
// app/javascript/packs/application.js
import Routes from '../routes.js.erb'
// Note the .erb extension!
// If you want it to be available globally for some reason:
window.Routes = Routes
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With