Framework: IE Out of stack space Evaluating [email protected]/browser.js

Created on 21 Mar 2016  路  10Comments  路  Source: aurelia/framework

Getting error in IE 11.162 v.:

issue

In Firefox and Chrome everything works fine. Any ideas?

Most helpful comment

@JeroenVinke
I have the same issue with my bundled application(but only stack overflow error without details)
So temporary workaraund here is import core-js and only then aurelia-bootstrapper.(from [here])(https://github.com/aurelia/polyfills/issues/16)

        System.import('core-js').then(function() {
            System.import('aurelia-bootstrapper');
        });

All 10 comments

I can confirm this.
Bundled apps don't seem to have this problem.

Having the same issue. Problem existed before, but updating to the latest and greatest version of Aurelia (despite JSPM 0.17 - working with 0.16.32 for now), did not solve the issue. My bundled version also has this issue.

"Error: Out of stack space
at Collection (eval code:20772:9)
at Collection (eval code:20773:11)
at Collection (eval code:20773:11)
at Collection (eval code:20773:11)
at Collection (eval code:20773:11)
at Collection (eval code:20773:11)
at Collection (eval code:20773:11)
at Collection (eval code:20773:11)
at Collection (eval code:20773:11)
at Collection (eval code:20773:11)"

capture

I'm seeing this issue in Edge too but only when the debugger isn't attached.
Open F12 and the page loads.

+1

:+1:

So what about this issue?
Currently we have ie-incompatible application at production(edge works fine).
Maybe some workarounds?

@vkomodey I got this error because SystemJS was doing on the fly transpilation. In this app I need systemjs to do that but it may be different for you. Check if the transpiler is disabled here. If it is not, try and disable it and see which files it crashes on.

@JeroenVinke
I have the same issue with my bundled application(but only stack overflow error without details)
So temporary workaraund here is import core-js and only then aurelia-bootstrapper.(from [here])(https://github.com/aurelia/polyfills/issues/16)

        System.import('core-js').then(function() {
            System.import('aurelia-bootstrapper');
        });

@JeroenVinke , thanks, that did the trick for me.

This issue is somewhat redundant given this is related to a pre Babel v6 runtime, things have changed since then. I think this can be closed @EisenbergEffect

Was this page helpful?
0 / 5 - 0 ratings

Related issues

pvettori picture pvettori  路  3Comments

txels picture txels  路  6Comments

RichiCoder1 picture RichiCoder1  路  4Comments

danfma picture danfma  路  5Comments

dasch88 picture dasch88  路  4Comments