Angular cli after update npm start give error

前端 未结 4 1817
执笔经年
执笔经年 2021-02-13 05:08

I create application using angular cli and use backend proxy to handle backend and using polymer(vaadin) it work correctly until I update to angular cli 1.0.0-beta.22 it give Er

4条回答
  •  不要未来只要你来
    2021-02-13 05:27

    Using github I have found a workaround that is work for me I remove the main-polymer.ts file and edited the main ts file as below.

    main.ts

    import './polyfills.ts';
    
    import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
    import { enableProdMode } from '@angular/core';
    import { environment } from './environments/environment';
    import { AppModule } from './app/';
    
    if (environment.production) {
      enableProdMode();
    }
    
    var webComponentsFlag = false;
    document.addEventListener('WebComponentsReady',() =>{
      if (!webComponentsFlag)
        platformBrowserDynamic().bootstrapModule(AppModule);
      webComponentsFlag = true;
    });
    if (webComponentsFlag)
     platformBrowserDynamic().bootstrapModule(AppModule);
    

    and it worked for me. but can't build using ng build to overcome this problem refer the

    github issue

提交回复
热议问题