Bootstrap.min.js.map not found

This happens on most of my websites.
First point is that everything is working ok but…
for some reason in Web Inspector it shows files such as bootstrap/4/js/bootstrap.min.js.map as NOT found. Now the file bootstrap/4/js/bootstrap.min.js IS in there and in the code it references to that file.
So the question I have is where does the bootstrap/4/js/bootstrap.min.js.map come from ??

This is an introduction to SourceMap files: https://www.html5rocks.com/en/tutorials/developertools/sourcemaps/

As you can see, these files are useful when tracking down a problem. In your case you can do one of the following:

  • produce a SourceMap file
  • ignore the message
  • remove the reference to the SourceMap file

If you choose to go for the first oprion, have a look at https://docs.wappler.io/t/using-bootstrap-source-files/7582

Cheers @ben I think option 2 and to ignore it is the best :wink: