1
0
Fork 0
peertube/client/src/main.ts

49 lines
1.4 KiB
TypeScript
Raw Normal View History

2017-12-12 10:59:28 +00:00
import { enableProdMode } from '@angular/core'
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'
2017-12-11 16:36:46 +00:00
2017-12-12 10:59:28 +00:00
import { AppModule } from './app/app.module'
import { environment } from './environments/environment'
2017-12-11 16:36:46 +00:00
2017-12-12 13:45:42 +00:00
import { hmrBootstrap } from './hmr'
2017-12-11 16:36:46 +00:00
if (environment.production) {
2017-12-12 10:59:28 +00:00
enableProdMode()
2017-12-11 16:36:46 +00:00
}
2017-12-12 13:45:42 +00:00
const bootstrap = () => platformBrowserDynamic()
2017-12-12 10:59:28 +00:00
.bootstrapModule(AppModule)
2018-02-22 13:15:23 +00:00
.then(bootstrapModule => {
2018-02-26 10:44:54 +00:00
// TODO: Uncomment and remove unregistration when https://github.com/angular/angular/issues/21191 is fixed
2018-02-22 13:15:23 +00:00
// TODO: Remove when https://github.com/angular/angular-cli/issues/8779 is fixed?
2018-02-26 10:44:54 +00:00
// if ('serviceWorker' in navigator && environment.production) {
// navigator.serviceWorker.register('/ngsw-worker.js')
// .catch(err => console.error('Cannot register service worker.', err))
// }
if (navigator.serviceWorker) {
navigator.serviceWorker.getRegistrations()
.then(registrations => {
for (const registration of registrations) {
registration.unregister()
}
})
}
2018-02-22 13:15:23 +00:00
return bootstrapModule
})
.catch(err => {
console.error(err)
return null
})
2017-12-12 13:45:42 +00:00
if (environment.hmr) {
if (module[ 'hot' ]) {
hmrBootstrap(module, bootstrap)
} else {
console.error('HMR is not enabled for webpack-dev-server!')
console.log('Are you using the --hmr flag for ng serve?')
}
} else {
bootstrap()
}