2

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 Answer 1

2

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: {
     ...
  }
Sign up to request clarification or add additional context in comments.

3 Comments

This isn't a solution to the problem, setting waitSeconds to ill advised as it will mask any potential script loading problems that are occurring.
It works, thank you very much alancasagrande for the tip I set waitSeconds to zero an error was gone. Regards
waitSeconds: The number of seconds to wait before giving up on loading a script. Setting it to 0 disables the timeout. The default is 7 seconds. [requirejs.org/docs/api.html#config-waitSeconds]

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.