I am getting this error while printing the invoice
DevTools failed to load source map: Could not load content for webpack://Quill/node_modules/quill-delta/dist/Delta.js.map: Fetch through target failed: Unsupported URL scheme; Fallback: HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME
DevTools failed to load source map: Could not load content for webpack://Quill/node_modules/quill-delta/dist/AttributeMap.js.map: Fetch through target failed: Unsupported URL scheme; Fallback: HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME
DevTools failed to load source map: Could not load content for webpack://Quill/node_modules/quill-delta/dist/Op.js.map: Fetch through target failed: Unsupported URL scheme; Fallback: HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME
DevTools failed to load source map: Could not load content for webpack://Quill/node_modules/quill-delta/dist/Iterator.js.map: Fetch through target failed: Unsupported URL scheme; Fallback: HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME
printpreview:148 GET https://fonts.googleapis.com/css?family=Default:400,500,600,700 net::ERR_ABORTED 400
about:client:1 GET https://fonts.googleapis.com/css?family=Default:400,500,600,700 net::ERR_ABORTED 400
Is this get solved?
Try this
bench --site <SITE_NAME> build
The error ERR_UNKNOWN_URL_SCHEME that you are facing while printing the invoice can be triggered by several factors, which can be broadly categorized into issues related to custom URL schemes, browser compatibility, extensions, and typos.
I think it is a browser-related problem that appears when the browser is able to process a URL that it simply doesn’t know how to handle. The URL scheme is the first element of a URL that defines the protocol that is necessary. There are different ways to fix the error, you can find detailed information at:- https://cheapsslweb.com/resources/how-to-resolve-err_unknown_url_scheme-error.
I hope it helps!