Notice: The Monaca & Onsen UI Community Forum is shutting down.

For Onsen UI bug reports, feature requests and questions, please use the Onsen UI GitHub issues page. For help with Monaca, please contact Monaca Support Team.

Thank you to all our community for your contributions to the forum. We look forward to hearing from you in the new communication channels.

Angular8 Load Error



  • I created a new Angular8 project with OnsenUI 2.10.8 version,After i build it for publish,there has an error “main-es2015.js:1 Uncaught ReferenceError: setImmediate is not defined”



  • i solved the problem by add the follow script in the head part of index.html
    <script>
    window.setImmediate = window.setTimeout;
    </script>