[Vuejs]-Vue.js not working on Heroku Rails app

0👍

There was a Javascript error, specifically, I needed to include Tether to use Bootstrap. On local there is no minification, so even with an error, Vue.js was working. But on Production, one JS error would completely stop the whole application JS compiling.

Making sure I have that dependency fixed the problem.

Leave a comment