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

StackOverflow https://stackoverflow.com/questions/20673187

  •  19-09-2022
  •  | 
  •  

質問

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.

役に立ちましたか?

解決

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: {
     ...
  }
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top