Flutter Web main.dart.js.map issue - google-chrome

I have deployed one flutter web app. when it is loaded in console I can see the error as follows.
is this file require for functional website?
DevTools failed to load SourceMap: Could not load content for http://localhost:8080/main.dart.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE

Related

Autodesk Forge error 404 from the browser using the tutorial

following https://learnforge.autodesk.io/#/
when I try to run the debugger the browser console shows
localhost/:1 Failed to load resource: the server responded with a status of 404 (Not Found)
This is the second time attempting and I followed the Autodesk instructions closely.

Getting 404 quill.min.js.map error with Primefaces 8

I am using primefaces texteditor and primefaces-extension ckeditor both on the same page.
DevTools failed to load SourceMap: Could not load content for http://localhost:8080/XX/javax.faces.resource/texteditor/quill.min.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
You can ignore that error. It is because PF TExtEditor uses QuillJS and it has this line in its JS.
//# sourceMappingURL=quill.min.js.map
And that file does not exist because PF does not include it. the browser Dev Tools just attempt to load it to help you debug.
Disable source map checks in Chrome: https://stackoverflow.com/questions/35002087/disable-source-maps-in-chrome-devtools#:~:text=2%20Answers&text=Open%20Developer%20Tools%2C%20go%20to,under%20the%20%22Sources%22%20settings.&text=You%20can%20double%20click%20line,files%20to%20unminified%20output%20files.

How to fix this error when using Live Server extension in Visual Studio Code?

DevTools failed to load SourceMap: Could not load content for chrome-extension://fheoggkfdfchfphceeifdbepaooicaho/sourceMap/chrome/iframe_handler.map: HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME
DevTools failed to load SourceMap: Could not load content for chrome-extension://fheoggkfdfchfphceeifdbepaooicaho/sourceMap/chrome/content.map: HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME
Is there any way to fix this?
I had almost exactly the same problem:
DevTools failed to load SourceMap: Could not load content for chrome-extension://hdokiejnpimakedhajhdlcegeplioahd/sourcemaps/onloadwff.js.map: HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME"
It indicated in the error it has something to do with Chrome extensions, so I went into my extensions and searched (Ctrl-F) for a small snippet of the error text, hdokiejnpimake. It found that LastPass: Free Password Manager 4.47.0 was the problem. I disabled it and the error went away.

chrome extension using google.payments.inapp fails

I'm trying to enable in-app purchase inside my chrome extension. For that I've integrated with Google's buy.js lib.
Now when I attempt to purchase using this endpoint - google.payments.inapp.buy
I get the following error -
An unexpected error has occurred. Please try again later.
When I look at the console of the prompted paymet screen I see that there's a failed attempt to call a service at url -
https://224.32.32.55/29753 Failed to load resource:
net::ERR_ADDRESS_UNREACHABLE
It used to work in the past and stopped. What could be causing this?

Application Cache Error event: Failed to parse manifest

In my browser app, I use an HTML5 ApplicationCache manifest which is valid according to http://manifest-validator.com/validate
It looks as follows
CACHE MANIFEST
# MYAPPNAME 5.8.33
CACHE:
index.html
app.js
NETWORK:
*
When I load the app, Google Chrome (Version 46.0.2490.86 m for Windows) throws the following error:
Application Cache Error event: Failed to parse manifest http://192.168.0.3/development.nsf/WebApp/cache.appcache index.html:1
Why is that and how can I get it to work?