Search code examples
requirejsripple

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


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.


Solution

  • 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: {
         ...
      }