Attempting to pass Base64 image data in Url to web page on same domain. Query string works correctly for text strings, but receiving error -VM8:2759 crbug/1173575, non-JS module files deprecated - when attaching the base64 data.
var url = "somepage.html?name=" + encodeURIComponent("sometext") + "&image=" + base64Data;
Base64 data was initially fetched from a php script, and being forwarded from one webpage to another - same domain. Image file does not exist on the server.