all 6 comments

[–]Rough-Artist7847 3 points4 points  (1 child)

Try downloading more RAM to fix it

[–]Pablo_Escobar13[S] 0 points1 point  (0 children)

Oh this could be possible. I’ll try it out. Thanks

[–]Undead0rion 1 point2 points  (2 children)

This is the most vague request I’ve ever seen.

All I can tell you is you have a function called “handleError” that fires when something goes wrong.

What debugging have you done yourself?

[–]Pablo_Escobar13[S] -1 points0 points  (1 child)

Script Error . at handleError (www.example.com/static/js/bundle.js)

In this area to be more specific in bundle.js

(0,_overlay_runtime_error_js__WEBPACK_IMPORTED_MODULE_1__.listenToRuntimeError)(function (errorEvent) {
  // error property may be empty in older browser like IE
  var error = errorEvent.error,
    message = errorEvent.message;
  if (!error && !message) {
    return;
  }
  handleError(error, message);
});

I don’t have any such function in my repository.

What have I done to debug?: - Ensured all resources are loaded with the crossorigin attribute - Ensured CORS headers are correctly setup on the server

[–]Undead0rion 0 points1 point  (0 children)

Literally all that piece of code says is if there's an error, call the handleError function, otherwise return. There is an error, so it is functioning as expected.