Ripple - Uncaught Error: Load timeout for modules: app http://requirejs.org/docs/errors.html#timeout

2.1k Views Asked by At

I'm using ripple chrome extension to test my mobile app. Why I got this error when test it with ripple? But if testing without it, everything works fine.

Uncaught Error: Load timeout for modules: app

http://requirejs.org/docs/errors.html#timeout

enter image description here

Thanks a lot in advance.

1

There are 1 best solutions below

3
On BEST ANSWER

Not sure why, but setting waitSeconds to 0 solved the problem for me. Found the solution here: https://github.com/jrburke/requirejs/issues/628

It might also be an issue with Evernote Web Clipper, as reported here: https://github.com/jrburke/requirejs/issues/876

UPDATE:

Try to update your requirejs config:

require.config({
  waitSeconds: 0,
  paths: {
    ...
  },
  shim: {
     ...
  }