Awesom Media
Awesom Media

Reputation: 33

jquery and bootstrap 404 not found

i have a preety strange problem ( at least for me ). im building at the moment the design of an cms backend and im using a template for it.

the problem that i have is that, before im umploading the html file mailing.html , im getting no error messages in the chrome console, so messages like there is a file not found .

but when im uploading it to my webspace or on a local host im getting the message in the chrome console

 GET http://backend.awesom-media.de/js/jquery-1.10.2.min.map 404 (Not Found) js/jquery-1.10.2.min.map:1

GET http://backend.awesom-media.de/css/bootstrap.css.map 404 (Not Found) css/bootstrap.css.map:1

but there is no file like this and all others are working perfect.

would be nice if ya could help me there out , here is the link of it http://backend.awesom-media.de/mailing.html

Upvotes: 3

Views: 5644

Answers (1)

Peter
Peter

Reputation: 2802

The .map file is being loaded in jquery.min.js from the following line:

//@ sourceMappingURL=jquery-1.10.2.min.map

And from the following line in bootstrap.css:

/*# sourceMappingURL=bootstrap.css.map */

Either remove those lines, or upload the map files to your production web server. You can get the map files from the official jQuery or Bootstrap downloads.

Upvotes: 5

Related Questions