Very slow load times and the hunt for issues

I am not sure what this is telling me but it seems that it is looking for resources it cannot locate. Could this be part of my issue and how would I address this? Please see the screenshot. Thank you.

Hi There @GeorgiaG

Thanks for writing in! You can simply ignore those errors, which are just missing source-maps. They are requested by developer tools when possible, but won’t interfere with anything.

Basically it’s a way to map a combined/minified file back to an unbuilt state. When you build for production, along with minifying and combining your JavaScript files, you generate a source map which holds information about your original files. When you query a certain line and column number in your generated JavaScript you can do a lookup in the source map which returns the original location.

Please check out these links:


Hope that helps.
Thanks!

Thank you.

You are most welcome. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.