mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 00:33:44 +00:00
14 lines
399 B
TypeScript
14 lines
399 B
TypeScript
import { CommonModule } from "@angular/common";
|
|
import { NgModule } from "@angular/core";
|
|
import { BrowserModule } from "@angular/platform-browser";
|
|
|
|
import { AppComponent } from "./app.component";
|
|
|
|
@NgModule({
|
|
declarations: [AppComponent],
|
|
imports: [BrowserModule, CommonModule],
|
|
providers: [{ provide: "WINDOW", useValue: window }],
|
|
bootstrap: [AppComponent],
|
|
})
|
|
export class AppModule {}
|