Skip to content

Instantly share code, notes, and snippets.

@dormd
Created March 28, 2017 16:15
Show Gist options
  • Save dormd/d0730e4413d869731ed370e9a5030493 to your computer and use it in GitHub Desktop.
Save dormd/d0730e4413d869731ed370e9a5030493 to your computer and use it in GitHub Desktop.
import { NgModule, forwardRef } from '@angular/core';
import { UpgradeAdapter } from '@angular/upgrade';
import { BrowserModule } from '@angular/platform-browser';
export const upgradeAdapter = new UpgradeAdapter(forwardRef(() => AppModule));
@NgModule({
imports: [
BrowserModule
],
bootstrap: []
})
export class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment