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 {appConfig} from './app/app.config';
|
|
|
|
|
import {bootstrapApplication} from '@angular/platform-browser';
|
|
|
|
|
import {AppComponent} from './app/app.component';
|
2020-01-27 18:40:18 +00:00
|
|
|
|
2024-10-23 08:07:34 +00:00
|
|
|
bootstrapApplication(AppComponent, appConfig).catch((err) => console.error(err));
|