Search code examples
javascripttypescriptstenciljs

Stencil JS globalscript is not completing before app loads


Need to initialize indexedDB before any component loads. Tried using the global script to do this but the global script default function does not complete before components load. For example if I set a timeout in the default function for 30 seconds the components still load and do not wait for the function to complete. Read documentation and states "The global script runs once BEFORE your library/app loads." This is not happening.

Need some suggestions on how to achieve my goal or possible reasons why global scripts is behaving as such. Tried setting up the global script both async and sync.


Solution

  • This is a confirmed bug. See open issue below.

    https://github.com/ionic-team/stencil/issues/4889

    https://github.com/ionic-team/stencil/issues/3392