Angular2 Final Release - “Error: Angular requires Zone.js prolyfill”

前端 未结 5 730
醉话见心
醉话见心 2021-02-18 16:09

I have upgraded from RC4 to the Final release of Angular2. When I run npm start, the app is stuck on \'Loading...\' the only error I get is about Zone.js:

<

5条回答
  •  温柔的废话
    2021-02-18 17:09

    If adding node_module to your HTML is a problem, all you need is to manually import zone.js before bootstrapping.

    import 'zone.js';
    ...
    platformBrowserDynamic().bootstrapModule(AppModule);
    

提交回复
热议问题