I have a javascript in the vendors/assets/javascripts
folder, and I have this line of code:
<script src="assets/grid.js"></script>
in one of my app/views
page.
This grid.js
file (inside the vendors directory) works when I test it out in localhost, but when I precompile and push my application to heroku, it says:
GET http://www.domain.com/assets/grid.js 404 (Not Found)
Why is this occurring?
Thanks