mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
18 lines
616 B
TypeScript
18 lines
616 B
TypeScript
import 'core-js/es/reflect';
|
|
import 'zone.js';
|
|
import 'reflect-metadata';
|
|
/******************************************************************
|
|
* Load `$localize` - not used for i18n in this project, we use ngx-translate.
|
|
* It's used for localization of dates, numbers, currencies, etc.
|
|
*/
|
|
import '@angular/localize/init';
|
|
|
|
import { bootstrapApplication } from '@angular/platform-browser';
|
|
|
|
import { AppComponent } from './app/app.component';
|
|
import { serverAppConfig } from './modules/app/server-app.config';
|
|
|
|
const bootstrap = () => bootstrapApplication(AppComponent, serverAppConfig);
|
|
|
|
export default bootstrap;
|