I’m recently playing with bootsrap3. I compiled it from sources and included distr js and css to my project. The thing is, I see in GH dev tools, that it’s trying to get .map.css file. Why does it want to do so? How to disable it? Do I need to disable it? To not to have an error mark in dev tools, I added that map file, after which all styles are displayed as they defined in less files, which doesn’t help me much.
asked Feb 14, 2014 at 7:37
2
Delete the line /*# sourceMappingURL=bootstrap.css.map */
from bootstrap.css
Mohit Jain
30.2k8 gold badges72 silver badges100 bronze badges
answered May 28, 2014 at 10:43
user2779632user2779632
2,6671 gold badge11 silver badges3 bronze badges
5
.map files allow a browser to download a full version of the minified JS. It is really for debugging purposes.
In effect, the .map missing isn’t a problem. You only know it is missing, as the browser has had its Developer tools opened, detected a minified file and is just informing you that the JS debugging won’t be as good as it could be.
This is why libraries like jQuery have the full, the minified and the map file too.
See this article for a full explanation of .map files:
answered Feb 14, 2014 at 7:43
8
This only happens when you use the dev-tools, and won’t happen for normal users accessing the production server.
In any case, I found it useful to simply disable this behavior in the dev-tools: open the settings and uncheck the «Enable source maps» option.
There will no longer be an attempt to access map files.
answered Mar 14, 2018 at 9:05
ShovaltShovalt
6,2772 gold badges33 silver badges50 bronze badges
5
Remove the line /*# sourceMappingURL=bootstrap.css.map */
in bootstrap.css
If the error persists, clean the cache of the browser (CTRL + F5).
Vincent
4,3321 gold badge38 silver badges37 bronze badges
answered Mar 16, 2016 at 14:55
3
Delete the line "/*# sourceMappingURL=bootstrap.min.css.map */ "
in following files:
- css/bootstrap.min.css
- css/bootstrap.css
To fetch the file path in Linux use the command find / -name "*bootstrap*"
SwissCodeMen
4,0956 gold badges23 silver badges33 bronze badges
answered Jul 31, 2018 at 5:06
2
From bootstrap.css remove last line /*# sourceMappingURL=bootstrap-theme.css.map */
SwissCodeMen
4,0956 gold badges23 silver badges33 bronze badges
answered Nov 5, 2014 at 10:05
If you don’t have the correct .map file and you don’t want to edit lines in bootstrap.css you can create a dummy .map file.
In my case I was seeing the error:
GET /bootstrap.css.map not found.
So I created an empty bootstrap.css.map in the /public directory and the error stopped.
answered Nov 19, 2014 at 15:45
Julian MannJulian Mann
6,1875 gold badges31 silver badges43 bronze badges
1
Delete
/*# sourceMappingURL=bootstrap.min.css.map */
in css/bootstrap.min.css
and delete
/*# sourceMappingURL=bootstrap.css.map */
in css/bootstrap.css
answered Nov 12, 2017 at 17:12
Delete the last line in bootstrap.css
folllowing line
/*# sourceMappingURL=bootstrap.css.map */
SwissCodeMen
4,0956 gold badges23 silver badges33 bronze badges
answered Apr 16, 2015 at 4:54
1
Follow that tutorial:
Disable JavaScript With Chrome DevTools
Summary:
- Open your code Inspector (right click)
- Press Control+Shift+P and search «Disable JavaScript source maps»
- Do same for «Disable CSS source maps»
- Press control+F5 to clear cache and reload page.
answered Feb 4, 2021 at 11:46
codeMastercodeMaster
1561 silver badge4 bronze badges
I had also warnings in Google Dev-Tools and I added only bootstrap.min.css.map file in the same folder, where bootstrap.min.css is.
I have now no warnings more and You can find more Explanation here: https://github.com/twbs/bootstrap#whats-included
I hope, I answered your Question.
answered Mar 2, 2017 at 18:58
SVANSKISVANSKI
4263 silver badges13 bronze badges
For me, created an empty bootstrap.css.map together with bootstrap.css and the error stopped.
answered Apr 21, 2017 at 21:50
0
Deleting this line fixes it, but the problem is the boostrap files are in bower_components
and not checked into source control.
So, every developer on the team will get the css file with the map reference when they pull the repo and do bower install
(which is part of using a new repo).
The file should not have the reference to a map that is not there.
answered Dec 4, 2017 at 16:25
SteveSteve
14.3k32 gold badges124 silver badges228 bronze badges
Okay Recently I faced this problem I have very simple solution for solve this Issue , follow these steps:
go to these directories src-> app-> index.html open the index.html and find
<base href="your app name ">
change this to <base href="/">
answered Nov 3, 2017 at 6:25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and
privacy statement. We’ll occasionally send you account related emails.
Already on GitHub?
Sign in
to your account
Closed
Salt54J opened this issue
Oct 6, 2018
· 4 comments
Closed
bootstrap.min.css.map Source Map Error
#117
Salt54J opened this issue
Oct 6, 2018
· 4 comments
Comments
Hi, I installed this plugin and it seems to be working OK (the theme looks great!), but I noticed on the console that I am getting a source map error when I load the journal homepage.
Source map error: request failed with status 404
Resource URL: https://domainname.com/plugins/themes/healthSciences/libs/bootstrap.min.css
Source Map URL: bootstrap.min.css.map
OJS: 3.1.1.4
Health Sciences Theme: 1.0.2
Hosting: Shared hosting, OJS installed via Softaculous
Permissions: All the files in the theme are permissioned 0644 (all can read, user can write) and folders are 0755 (all can read, user can write, all can execute)
Browser: Firefox 62.0.3 on Windows 10 Pro
Thanks for all of your hard work
Hi @Salt54J
Thanks on this one.
This error means that browser can’t find the file pointed here: https://github.com/pkp/healthSciences/blob/master/libs/bootstrap.min.css#L7
Source map files, like bootstrap.min.css.map
, are generated automatically during files minification/compiling process. They actually are not needed for the production, but at the same time occupy 3 times more disk space than ones which they are mapping. That’s why I don’t include them in the release.
If you want just to remove that message, you can either remove comments like /*# sourceMappingURL=bootstrap.min.css.map */
in bootstrap.min.css
, bootstrap.min.js
and popper.min.js
or download source map files from a Bootstrap 4.1.3 release and put them inside libs
directory
Mykola-Veryha, sdsaati, and ZewenKong reacted with laugh emoji
how to solve below errors
how to solve below errors
Hi arvindjugtwan00,
Even i got the same error as you have got but it was resolved by deleting few line so you just have to delete
the line » /*# sourceMappingURL=bootstrap.min.css.map */ » in folder ‘styles/bootstrap4/bootstrap.min.css.map’
and the line » //# sourceMappingURL=bootstrap.min.js.map./ » in folder ‘styles/bootstrap4/bootstrap.min.css.js’
and the line » //# sourceMappingURL=popper.js.map » in folder ‘styles/bootstrap4/popper.js’
that all you have to do !!
I was just curious… The lines instructed to delete/comment are comments but why does these lines affect the behavior? They’re comments which should have no effect, isn’t it?
djgalloway
pushed a commit
to ceph/shaman
that referenced
this issue
Mar 16, 2021
This was referenced
Jun 16, 2021
HelloMark,
Сообщение от HelloMark
Я задал конкретный вопрос
вам дали конкретный ответ
Сообщение от HelloMark
Зачем вы мне кидаете ссылку на документацию?
потому что там находится ответ
Сообщение от HelloMark
нужно ли убирать это из конфига
Сообщение от itisntsoHard
если вам не нравится данная ошибка .то можно удалить это в bootstrap.css:
/*# sourceMappingURL=bootstrap.css.map */
Сообщение от HelloMark
что значит нормально?
такой, как другие; обычный, соответствующий норме
Сообщение от HelloMark
это правда?
да
Сообщение от HelloMark
Стоит ли из конфига удалить эту строчку, мешает ли она как-то?
на работоспособность не влияет
HelloMark, а вообще, постарайтесь быть более дружественным и менее критичным
тут вам помогают понять
а если вам нужно что бы просто «все сделали хорошо», без всяких усилий с вашей стороны, идите в раздел фриланс
я глубочайшие извиняюсь, но тут вам никто ничем не обязан, и itisntsoHard помог вам исключительно добровольно и бескорыстно
если Вас не устраивает его помощь, снова извините, но вы не его работодатель что бы что-либо требовать от него и писать в такой манере
-
#2
Обнаружил вот такой список предупреждений в браузере. Что это такое и как можно исправить?
DevTools failed to load source map: Could not load content for https://www.sayt.ru/themes/big-shop/css/modules/productcomments/productcomments.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
DevTools failed to load source map: Could not load content for https://www.sayt.ru/themes/big-shop/css/modules/blockuserinfo/blockuserinfo.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
DevTools failed to load source map: Could not load content for https://www.sayt.ru/themes/big-shop/css/scenes.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
DevTools failed to load source map: Could not load content for https://www.sayt.ru/themes/big-shop/css/autoload/uniform.default.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
DevTools failed to load source map: Could not load content for https://www.sayt.ru/themes/big-shop/css/modules/blockcontact/blockcontact.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
DevTools failed to load source map: Could not load content for https://www.sayt.ru/themes/big-shop/css/modules/favoriteproducts/favoriteproducts.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
DevTools failed to load source map: Could not load content for https://www.sayt.ru/themes/big-shop/css/modules/blocknewsletter/blocknewsletter.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
DevTools failed to load source map: Could not load content for https://www.sayt.ru/themes/big-shop/css/modules/blocksearch/blocksearch.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
DevTools failed to load source map: Could not load content for https://www.sayt.ru/themes/big-shop/css/modules/blockwishlist/blockwishlist.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
DevTools failed to load source map: Could not load content for https://www.sayt.ru/themes/big-shop/css/modules/homefeatured/homefeatured.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
DevTools failed to load source map: Could not load content for https://www.sayt.ru/themes/big-shop/css/category.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
DevTools failed to load source map: Could not load content for https://www.sayt.ru/themes/big-shop/css/modules/blockmyaccountfooter/blockmyaccount.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
DevTools failed to load source map: Could not load content for https://www.sayt.ru/themes/big-shop/css/modules/blockbestsellers/blockbestsellers.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
исправляется если удалить в bootstrap.min.css следующую строчку:
Код:
/*# sourceMappingURL=bootstrap.min.css.map */
-
#3
исправляется если удалить в bootstrap.min.css следующую строчку:
Код:
/*# sourceMappingURL=bootstrap.min.css.map */
а где этот файл находится? Нашел файл с таким названием bootstrap.min.css в директории: админка/filemanager/css/
НО там и близко такого нет текста.
Там содержание примерно такое:
/*!
* Bootstrap v2.3.1
*
* Copyright 2012 Twitter, Inc
* Licensed under the Apache License v2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world @twitter by @mdo and @fat.
*/.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;line-height:0;content:»»}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}a:hover,a:active{outline:0}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{width:auto9;height:auto;max-width:100%;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic}#map_canvas img,.google-maps img{max-width:none}button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle}button,input{*overflow:visible;line-height:normal}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}button,html input[type=»button»],input[type=»reset»],input[type=»submit»]{cursor:pointer;-webkit-appearance:button}label,select,button,input[type=»button»],input[type=»reset»],input[type=»submit»],input[type=»radio»],input[type=»checkbox»]{cursor:pointer}input[type=»search»]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=»search»]::-webkit-search-decoration,input[type=»search»]::-webkit-search-cancel-button{-webkit-appearance:none}textarea{overflow:auto;vertical-align:top}@media
Последнее редактирование: 12.02.2022
-
#4
Обнаружил вот такой список предупреждений в браузере. Что это такое и как можно исправить?
Такого рода предупреждения могут быть проигнорированы.
Либо в самом браузере выключить эти предупреждения.
-
#7
Такого рода предупреждения могут быть проигнорированы.
Либо в самом браузере выключить эти предупреждения.
хотелось бы в браузере ничего не отключать, а просто исправить
-
#8
Открываем файл https://www.sayt.ru/themes/big-shop/css/modules/productcomments/productcomments.css
в самом конце находим /*# sourceMappingURL=productcomments.css.map */
и удаляем
В указанном месте нет такого файла
но он есть вот здесь //themes/big-shop/css/modules/productcomments/
и в нем действительно есть закомментированная строка /*# sourceMappingURL=productcomments.css.map */
её удаление ничего не дало — по прежнему все так же — кеш чистил и страницу перегружар ctrl + F5
да и я думаю ничего бы и не дало — она же закоментирована??
или это нужно в каждом модуле исправить по списку?
-
#9
А через консоль настройки ксс? Галку на джавик
-
#10
Благодарю всех за помощь!
Решение оказывается «лобовое» — во всех этих файлах ФИЗИЧЕСКИ удалить строку /*# sourceMappingURL=productcomments.css.map */
я то думал она закомментирована и не должна срабатывать — а оказывается это не так!
пошел удалять ))
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and
privacy statement. We’ll occasionally send you account related emails.
Already on GitHub?
Sign in
to your account
Closed
pameyer opened this issue
Jul 20, 2018
· 7 comments
Closed
404 errors for bootstrap.min.css.map
#4875
pameyer opened this issue
Jul 20, 2018
· 7 comments
Assignees
Comments
Looks like the minified CSS from the boostrap upgrade has references to the sourcemap, which is triggering 404 errors (possibly because the sourcemap is bootstrap.min.css.map
instead a prime-face-ized bootstrap.min.css.xhtml?version=4.9.1
)
I can easily reproduce the problem as of 42e6f7d on the phoenix server. Here’s a screenshot:
@pameyer I’m looking at pull request #4876 and I see that you’ve commented out sourceMappingURL
like this:
If this fixes the 404, great, but I guess I don’t completely understand what we did in pull request #4806 to introduce the problem in the first place.
Copy link
Contributor
Author
My suspicion is that the older bootstrap version had the sourcemap commented out in the minified CSS, and the newer one didn’t (or there’s a different in the minification procedure used internally between the two bootstrap versions).
@pameyer ok, I just search through the git history trying to figure out if we purposefully commented out sourceMappingURL
in the past. If so, I couldn’t find a commit message about it. I went ahead and approved #4876 but before dragging it to QA, I’ll let others weigh in. It bothers me a little that we can’t use Bootstrap out of the box, that we have to edit these files. It makes me wonder if we would have 404s if we got Bootstrap from a CDN. I’m aware that we backed off of using a CDN in c11c96a as part of our recent Bootstrap upgrade in pull request #4806 (discussion in #4219).
Copy link
Contributor
Author
curl -s https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css | grep -c sourceMap
-> 1
suggests this would also occur using the CDN provided version.
@pameyer interesting. Are you saying that your pull request actually gets us closer to vanilla Bootstrap?
Copy link
Contributor
Author
@pdurbin somewhat the opposite (the CDN version includes references to the sourcemap in minified CSS)
I’m developing an HTML CSS Website and I’m getting this error and similar. I’ve seen a couple of answers where it says that you need to go to Developer Tools in your browser and fix it there but I’ve tried in every browser and I think the problem is within the code can someone help me with it?
DevTools failed to load SourceMap: Could not load content for http://envio.ae/js/bootstrap.min.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
DevTools failed to load SourceMap: Could not load content for http://xxxxxx.com/css/aos.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
asked Oct 25, 2020 at 2:38
1
Referring to Vitaliy-1‘s soultion here. You could either add source map files or remove the source map reference.
This error means that browser can’t find the file pointed here: https://github.com/pkp/healthSciences/blob/master/libs/bootstrap.min.css#L7
Source map files, like bootstrap.min.css.map
, are generated automatically during files minification/compiling process. They actually are not needed for the production, but at the same time occupy 3 times more disk space than ones which they are mapping. That’s why I don’t include them in the release.
If you want just to remove that message, you can either remove comments like /*# sourceMappingURL=bootstrap.min.css.map */
in bootstrap.min.css
, bootstrap.min.js
and popper.min.js
or download source map files from a Bootstrap 4.1.3 release and put them inside libs
directory.
answered Jan 29, 2021 at 14:32
Malay MMalay M
1,54912 silver badges22 bronze badges
Содержание
- 404 errors for bootstrap.min.css.map #4875
- Comments
- Footer
- [Chrome]: DevTools failed to load source map: Could not load content for bootstrap.min.js.map
- How to fix DevTools failed to load source map error
- What is a SourceMap?
- bootstrap.css.map missing (404 not found) — using LESS #2
- Comments
- GET /static/css/bootstrap.min.css HTTP/1.1″ 404 #12
- Comments
404 errors for bootstrap.min.css.map #4875
Looks like the minified CSS from the boostrap upgrade has references to the sourcemap, which is triggering 404 errors (possibly because the sourcemap is bootstrap.min.css.map instead a prime-face-ized bootstrap.min.css.xhtml?version=4.9.1 )
The text was updated successfully, but these errors were encountered:
I can easily reproduce the problem as of 42e6f7d on the phoenix server. Here’s a screenshot:
@pameyer I’m looking at pull request #4876 and I see that you’ve commented out sourceMappingURL like this:
If this fixes the 404, great, but I guess I don’t completely understand what we did in pull request #4806 to introduce the problem in the first place.
My suspicion is that the older bootstrap version had the sourcemap commented out in the minified CSS, and the newer one didn’t (or there’s a different in the minification procedure used internally between the two bootstrap versions).
@pameyer ok, I just search through the git history trying to figure out if we purposefully commented out sourceMappingURL in the past. If so, I couldn’t find a commit message about it. I went ahead and approved #4876 but before dragging it to QA, I’ll let others weigh in. It bothers me a little that we can’t use Bootstrap out of the box, that we have to edit these files. It makes me wonder if we would have 404s if we got Bootstrap from a CDN. I’m aware that we backed off of using a CDN in c11c96a as part of our recent Bootstrap upgrade in pull request #4806 (discussion in #4219).
curl -s https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css | grep -c sourceMap -> 1 suggests this would also occur using the CDN provided version.
@pameyer interesting. Are you saying that your pull request actually gets us closer to vanilla Bootstrap?
@pdurbin somewhat the opposite (the CDN version includes references to the sourcemap in minified CSS)
@pameyer ok, I went to https://stackoverflow.com/questions/21773376/bootstrap-trying-to-load-map-file-how-to-disable-it-do-i-need-to-do-it and I think I better understand what you’re up to in your pull request. I was mistaken when I said you were commenting out something. You’re deleting something that’s commented out. It’s a weird fix but I’m fine with it. Moving to QA.
© 2023 GitHub, Inc.
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session.
Источник
When adding a bootstrap javascript library to my webpages, Chrome warned as DevTools failed to load source map . Below is the complete error message:
As a developer, I expect console output to only contain messages relevant to my application development.
It was frustrating to see the above error because I had no reference to the file bootstrap.min.js.map in my webpage which was indicated in the warning message. I searched the whole website’s root directory for the file and only found bootstrap.min.js and not bootstrap.min.js.map file. Surprisingly found a reference in the file bootstrap.min.js for bootstrap.min.js.map as below:
As it is commented didn’t pay much attention to it!
What is a SourceMap?
The Javascript sources are often combined and minified to optimize the website to load faster and reduce bandwidth usage. Minification and combining dramatically improve site speed and accessibility, directly translating into a better user experience. Such scripts are difficult to debug than the original source code. A source map is a file that maps from the transformed source to the original source, enabling the browser to reconstruct the original source and present the reconstructed original to the debugger. To enable the debugger to work with a source map, a source map file shall be generated and included in the transformed file as a comment that points to the source map file as below:
Solution:
Simply remove the below line from the file or based on the bootstrap version, you can download the corresponding source map file and place it in the appropriate directory where bootstrap.min.js is placed.
Similarly, if you found a warning corresponding to a missing source map file, either go to the corresponding file and remove the sourceMappingURL line or download the corresponding source map file and place it in the appropriate directory.
Источник
bootstrap.css.map missing (404 not found) — using LESS #2
I installed ember-cli-bootstrap via npm.
Everything seems to be working fine, but I noticed the site is requesting a file /assets/bootstrap.css.map and Ember is returning a 404.
The text was updated successfully, but these errors were encountered:
It is not necessary to use the @import statement. The addon works auto-magically when you npm install it such that all the LESS gets preprocessed into your vendor.css and is immediately available. I’m not sure if sourcemaps work though (probably not). But you will get the styles without error if you leave out the @import statement.
It seems that I don’t have access to the various bootstrap LESS components—like mixins—unless I explicitly import bootstrap in my app.less. Is there a better way to make these mixins available to my code?
I’m wondering the same. I might stick with importing LESS (or Sass) the «old-fashioned» way for now. Wonder what the addon story is for non-css, non-js assets.
Sorry for not getting to this issue sooner. I’ll try to take some time to look into this as soon as I can.
My PR should address this issue?
Perhaps this is somewhat off topic, as I’m not importing less but rather using the precompiled css, nonetheless I came across the same 404 error. I solved it by directing the bootstrap.css.map file to my assets directory in my Brocfile.js:
This got rid of the 404 error for me, and as a side benefit, the less shows up in Chrome’s developer tools, presumably inferred from the sourcemap.
Источник
GET /static/css/bootstrap.min.css HTTP/1.1″ 404 #12
After installing everything, I’m getting the above errors when accessing via browser:
27.0.0.1 — — [06/Dec/2018:00:28:45 +0100] «GET /static/css/cal-heatmap.css HTTP/1.1» 404 100 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:45 +0100] «GET /static/css/jquery-ui.css HTTP/1.1» 404 98 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:45 +0100] «GET /static/js/jquery.min.js HTTP/1.1» 404 97 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:45 +0100] «GET /static/js/jquery-ui.min.js HTTP/1.1» 404 100 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:45 +0100] «GET /static/js/bootstrap.min.js HTTP/1.1» 404 100 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:46 +0100] «GET /static/css/jquery.dataTables.min.css HTTP/1.1» 404 110 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:46 +0100] «GET /static/css/datetimepicker.css HTTP/1.1» 404 103 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:46 +0100] «GET /static/css/bootstrap-tagsinput.css HTTP/1.1» 404 108 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:46 +0100] «GET /static/css/bootstrap.min.css HTTP/1.1» 404 102 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:46 +0100] «GET /static/js/tether.min.js HTTP/1.1» 404 97 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:46 +0100] «GET /static/js/d3.min.js HTTP/1.1» 404 93 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:46 +0100] «GET /static/js/cal-heatmap.min.js HTTP/1.1» 404 102 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:46 +0100] «GET /static/js/Chart.bundle.min.js HTTP/1.1» 404 103 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:47 +0100] «GET /static/js/jquery.dataTables.min.js HTTP/1.1» 404 108 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:47 +0100] «GET /static/js/bootstrap-datetimepicker.js HTTP/1.1» 404 111 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:47 +0100] «GET /static/js/typeahead/typeahead.bundle.min.js HTTP/1.1» 404 117 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:47 +0100] «GET /static/js/fontawesome-all.min.js HTTP/1.1» 404 106 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:47 +0100] «GET /static/js/bootstrap-tagsinput.min.js HTTP/1.1» 404 110 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:47 +0100] «GET /admin/jsi18n/ HTTP/1.1» 302 0 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:47 +0100] «GET /static/admin/js/core.js HTTP/1.1» 404 97 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:47 +0100] «GET /static/admin/js/vendor/jquery/jquery.js HTTP/1.1» 404 113 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:48 +0100] «GET /static/admin/js/jquery.init.js HTTP/1.1» 404 104 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:48 +0100] «GET /static/admin/js/admin/RelatedObjectLookups.js HTTP/1.1» 404 119 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:48 +0100] «GET /static/admin/js/actions.js HTTP/1.1» 404 100 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:48 +0100] «GET /static/admin/js/urlify.js HTTP/1.1» 404 99 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:48 +0100] «GET /static/admin/js/prepopulate.js HTTP/1.1» 404 104 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:48 +0100] «GET /static/admin/js/vendor/xregexp/xregexp.js HTTP/1.1» 404 115 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:49 +0100] «GET /static/admin/js/calendar.js HTTP/1.1» 404 101 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:49 +0100] «GET /static/admin/js/admin/DateTimeShortcuts.js HTTP/1.1» 404 116 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:49 +0100] «GET /static/js/jquery-ui.min.js HTTP/1.1» 404 100 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:49 +0100] «GET /login?next=/admin/jsi18n/ HTTP/1.1» 200 9124 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:49 +0100] «GET /static/js/bootstrap.min.js HTTP/1.1» 404 100 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:49 +0100] «GET /static/js/tether.min.js HTTP/1.1» 404 97 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:49 +0100] «GET /static/js/d3.min.js HTTP/1.1» 404 93 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:50 +0100] «GET /static/js/cal-heatmap.min.js HTTP/1.1» 404 102 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:50 +0100] «GET /static/js/Chart.bundle.min.js HTTP/1.1» 404 103 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:50 +0100] «GET /static/js/jquery.dataTables.min.js HTTP/1.1» 404 108 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:50 +0100] «GET /static/css/jquery.dataTables.min.css HTTP/1.1» 404 110 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:50 +0100] «GET /static/css/datetimepicker.css HTTP/1.1» 404 103 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:50 +0100] «GET /static/js/bootstrap-datetimepicker.js HTTP/1.1» 404 111 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:50 +0100] «GET /static/js/typeahead/typeahead.bundle.min.js HTTP/1.1» 404 117 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:51 +0100] «GET /static/js/fontawesome-all.min.js HTTP/1.1» 404 106 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:51 +0100] «GET /static/js/bootstrap-tagsinput.min.js HTTP/1.1» 404 110 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:51 +0100] «GET /static/css/bootstrap-tagsinput.css HTTP/1.1» 404 108 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:51 +0100] «GET /static/admin/js/core.js HTTP/1.1» 404 97 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:51 +0100] «GET /static/admin/js/vendor/jquery/jquery.js HTTP/1.1» 404 113 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:51 +0100] «GET /static/admin/js/jquery.init.js HTTP/1.1» 404 104 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:51 +0100] «GET /static/admin/js/admin/RelatedObjectLookups.js HTTP/1.1» 404 119 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:51 +0100] «GET /static/admin/js/actions.js HTTP/1.1» 404 100 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:52 +0100] «GET /static/admin/js/urlify.js HTTP/1.1» 404 99 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:52 +0100] «GET /static/admin/js/prepopulate.js HTTP/1.1» 404 104 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:52 +0100] «GET /static/admin/js/vendor/xregexp/xregexp.js HTTP/1.1» 404 115 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:52 +0100] «GET /static/admin/js/calendar.js HTTP/1.1» 404 101 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:52 +0100] «GET /static/admin/js/admin/DateTimeShortcuts.js HTTP/1.1» 404 116 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
127.0.0.1 — — [06/Dec/2018:00:28:53 +0100] «GET /static/favicon.ico HTTP/1.1» 404 92 «http://127.0.0.1:8000/login?next=/» «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36»
So almost all giving 404 and I have done the static files collecting correctly.
Please can you help?
Thank you very much.
The text was updated successfully, but these errors were encountered:
Источник
When adding a bootstrap javascript library to my webpages, Chrome warned as DevTools failed to load source map
. Below is the complete error message:
DevTools failed to load source map: Could not load content for http://192.168.10.12/admin/css/bootstrap.min.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
As a developer, I expect console output to only contain messages relevant to my application development.
It was frustrating to see the above error because I had no reference to the file bootstrap.min.js.map in my webpage which was indicated in the warning message. I searched the whole website’s root directory for the file and only found bootstrap.min.js and not bootstrap.min.js.map file. Surprisingly found a reference in the file bootstrap.min.js for bootstrap.min.js.map as below:
//# sourceMappingURL=bootstrap.min.js.map
As it is commented didn’t pay much attention to it!
What is a SourceMap?
The Javascript sources are often combined and minified to optimize the website to load faster and reduce bandwidth usage. Minification and combining dramatically improve site speed and accessibility, directly translating into a better user experience. Such scripts are difficult to debug than the original source code. A source map is a file that maps from the transformed source to the original source, enabling the browser to reconstruct the original source and present the reconstructed original to the debugger. To enable the debugger to work with a source map, a source map file shall be generated and included in the transformed file as a comment that points to the source map file as below:
//# sourceMappingURL=http://example.com/path/to/your/sourcemap.map
Solution:
Simply remove the below line from the file or based on the bootstrap version, you can download the corresponding source map file and place it in the appropriate directory where bootstrap.min.js is placed.
//# sourceMappingURL=bootstrap.min.js.map
Similarly, if you found a warning corresponding to a missing source map file, either go to the corresponding file and remove the sourceMappingURL
line or download the corresponding source map file and place it in the appropriate directory.
Ramya Santhosh
is a Web Designer and content creator. A freelance writer on latest trends in technology, gadget reviews, How to’s and many more.
- Remove From My Forums
-
Question
-
User-1548796982 posted
hi
i get this message while load page and page load slowly
Source map error: request failed with status 404 Resource URL: …/Content/bootstrap.css Source Map URL: bootstrap.css.map
why?
All replies
-
User-2054057000 posted
It looks like you have not correctly linked the bootstrap.css in your page head.
Add the following css and js of bootstrap from cdn:
<!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css"> <!-- jQuery library --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <!-- Latest compiled JavaScript --> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
-
User-474980206 posted
You can ignore this error. When the browser developer tools are open, for every JavaScript and css file loaded, it also checks for a .map file which contains the source and line number mapping. This is only used to debug and is optional. -
User283571144 posted
Hi tadbirgaran,
i get this message while load page and page load slowly
Source map error: request failed with status 404 Resource URL: …/Content/bootstrap.css Source Map URL: bootstrap.css.map
As far as I know, this error means that browser can’t find the file pointed here:
/*# sourceMappingURL=bootstrap.min.css.map */
Link:https://github.com/pkp/healthSciences/blob/master/libs/bootstrap.min.css#L7
Source map files, like bootstrap.min.css.map, are generated automatically during files minification/compiling process. They actually are not needed for the production, but at the same time occupy 3 times more disk space than ones which they are mapping.
That’s why I don’t include them in the release.If you want just to remove that message, you can either remove comments like /*# sourceMappingURL=bootstrap.min.css.map */ in bootstrap.min.css, bootstrap.min.js and or download source map files from a Bootstrap and put them inside libs directory.
Besides, there are multiple reason cause your page load slowly.
I suggest you could try to use F12 development tool to troubleshoot which part cause your page loading slowly.
More details, you could refer to below article:
https://developers.google.com/web/tools/chrome-devtools/evaluate-performance/
Best Regards,
Brando