I had it fine, until today, when all of my js files loaded with requirejs suddenly can not be found, but because requirejs decided to give everyone a .map file extension, not ".js"
I added ".js" to the view-only paths, and then requirejs still failed because it pointed to "jquery.min.js.js"
I am puzzled at how this will suddenly change for no reason. Does anyone have any idea?
require.config baseUrl: 'javascripts' paths: jquery: 'vendor/jquery-1.10.2.min' underscore: 'vendor/underscore.min' backbone: 'vendor/backbone.min' shim: underscore: exports: '_' backbone: deps: ["underscore", "jquery"] exports: "Backbone" require [ 'jquery', 'underscore', 'backbone'
Again it worked perfectly when I last worked on it and came back to it today, it was scared. 
Ok, so I completely took out require.js, and now I have all the same missing errors with ".map". I opened it in safari (I used chrome) and I do not get these errors at all. Does Chrome have a stroke? somebody knows?
Thanks.
Sparkmasterflex
source share