Daniel
Daniel

Reputation: 13

Failed to load resource Bootstrap

I linked the newest version of bootstrap.min.css with <link rel="stylesheet" href="assets/css/bootstrap.min.css"> to my webpage. Everything worked fine. But now my browser tell me that the bootstrap.min.css.map is failed to load.

My stylesheet link says that bootstrap.min.css is linked, not the .map

With <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> everything works fine.

Upvotes: 1

Views: 3996

Answers (1)

Polaris
Polaris

Reputation: 712

You can disable it with deleting "/*# sourceMappingURL=bootstrap.min.css.map */" from your bootstrap.css file.

The warning should disappear.

Upvotes: 2

Related Questions