I'm trying to use RequireJS and I think
the prefix is making it error out:
[12:25:00.519] Error: Module name "jquery" has not been loaded yet for context: _. Use require([])
http://requirejs.org/docs/errors.html#notloaded @ http://localhost:3000/js/require.js:163
I removed the prefix and wrapped the files with the require.js define(['jquery', 'backbone', 'underscore'], function($, Backbone, _){ ... wrapper for now and it's working fine for my purposes.
Thanks for reading, I might try and make a general solution sometime if it would be appreciated (let me know)