mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
18 lines
448 B
TypeScript
18 lines
448 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
import { AppModuleShared } from './app.module.shared';
|
|
import { AppComponent } from './components/app/app.component';
|
|
|
|
@NgModule({
|
|
bootstrap: [ AppComponent ],
|
|
imports: [
|
|
BrowserModule,
|
|
AppModuleShared
|
|
],
|
|
providers: [
|
|
{ provide: 'ORIGIN_URL', useValue: location.origin }
|
|
]
|
|
})
|
|
export class AppModule {
|
|
}
|