mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-31 04:23:40 +00:00
* chore: update packages * start tunnel messaging * chore: standalone * pbpaste instead --------- Co-authored-by: Matt Hill <mattnine@protonmail.com>
12 lines
393 B
TypeScript
12 lines
393 B
TypeScript
import { enableProdMode } from '@angular/core'
|
|
import { bootstrapApplication } from '@angular/platform-browser'
|
|
import { AppComponent } from 'src/app/app.component'
|
|
import { APP_CONFIG } from 'src/app/app.config'
|
|
import { environment } from 'src/environments/environment'
|
|
|
|
if (environment.production) {
|
|
enableProdMode()
|
|
}
|
|
|
|
bootstrapApplication(AppComponent, APP_CONFIG).catch(console.error)
|