diff --git a/src/bootstrap.ts b/src/bootstrap.ts deleted file mode 100644 index 1cb95a8d8..000000000 --- a/src/bootstrap.ts +++ /dev/null @@ -1,6 +0,0 @@ -// import {bootstrap} from 'angular2/angular2'; -import {bootstrap} from 'angular2-universal-preview'; - -import {App} from './app'; - -bootstrap(App); diff --git a/src/client.ts b/src/client.ts new file mode 100644 index 000000000..0833febc1 --- /dev/null +++ b/src/client.ts @@ -0,0 +1,6 @@ +import {bootstrap} from 'angular2/platform/browser'; +// import {bootstrap} from 'angular2-universal-preview'; + +import {App} from './app'; + +bootstrap(App);