2021-12-10 02:37:01 +00:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright Google LLC All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
2024-09-20 15:23:15 +00:00
|
|
|
* found in the LICENSE file at https://angular.dev/license
|
2021-12-10 02:37:01 +00:00
|
|
|
*/
|
|
|
|
|
|
2024-10-23 08:07:34 +00:00
|
|
|
import {bootstrapApplication} from '@angular/platform-browser';
|
2025-07-21 13:45:32 +00:00
|
|
|
import {AppComponent, OtherAppComponent} from './app/app.component';
|
2024-10-23 08:07:34 +00:00
|
|
|
import {appConfig} from './app/app.config';
|
2025-07-21 13:45:32 +00:00
|
|
|
import {provideZonelessChangeDetection} from '@angular/core';
|
2020-01-27 18:40:18 +00:00
|
|
|
|
2024-10-23 08:07:34 +00:00
|
|
|
bootstrapApplication(AppComponent, appConfig).catch((err) => console.error(err));
|
2025-07-21 13:45:32 +00:00
|
|
|
bootstrapApplication(OtherAppComponent, {
|
|
|
|
|
providers: [provideZonelessChangeDetection()],
|
|
|
|
|
}).catch((err) => console.error(err));
|