Hello,
I'm installing the JS via webpack (in a Rails 6 app).
I'm currently getting the following error in the console:
Uncaught ReferenceError: jRespond is not defined
defaults functions.js:242
init functions.js:86
init functions.js:2021here is my application.js file.
require("@rails/ujs").start()
require("turbolinks").start()
require("@rails/activestorage").start()
require("channels")
require("jquery")
require("bootstrap")
require("js/plugins.min")
require("js/functions")
I have installed jrespond via yarn, but that hasn't helped.
Thanks!
