mirror of
https://github.com/taigrr/wails.git
synced 2026-04-13 18:38:11 -07:00
21 lines
484 B
TypeScript
21 lines
484 B
TypeScript
import { BrowserModule } from '@angular/platform-browser';
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
import { AppComponent } from './app.component';
|
|
|
|
import { APP_BASE_HREF } from '@angular/common';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
AppComponent
|
|
],
|
|
imports: [
|
|
BrowserModule,
|
|
AppRoutingModule
|
|
],
|
|
providers: [{provide: APP_BASE_HREF, useValue : '/' }],
|
|
bootstrap: [AppComponent]
|
|
})
|
|
export class AppModule { }
|