mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-27 02:41:53 +00:00
* chore: update packages (#3132) * chore: update packages * start tunnel messaging * chore: standalone * pbpaste instead --------- Co-authored-by: Matt Hill <mattnine@protonmail.com> * port labels and move logout to settings * enable-disable forwards * Fix docs URLs in start-tunnel installer output (#3135) --------- Co-authored-by: Alex Inkin <alexander@inkin.ru> Co-authored-by: gStart9 <106188942+gStart9@users.noreply.github.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)
|