1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-09 05:57:40 +02:00
bitwarden-browser/apps/web/src/app/app.module.ts

36 lines
1.2 KiB
TypeScript
Raw Normal View History

2021-12-17 15:57:11 +01:00
import { DragDropModule } from "@angular/cdk/drag-drop";
import { LayoutModule } from "@angular/cdk/layout";
2021-12-17 15:57:11 +01:00
import { NgModule } from "@angular/core";
import { FormsModule } from "@angular/forms";
import { BrowserAnimationsModule } from "@angular/platform-browser/animations";
2022-02-24 12:10:07 +01:00
import { InfiniteScrollModule } from "ngx-infinite-scroll";
2018-06-05 05:10:41 +02:00
2021-12-17 15:57:11 +01:00
import { AppComponent } from "./app.component";
import { CoreModule } from "./core";
2021-12-17 15:57:11 +01:00
import { OssRoutingModule } from "./oss-routing.module";
import { OssModule } from "./oss.module";
import { WildcardRoutingModule } from "./wildcard-routing.module";
2018-07-24 03:47:08 +02:00
/**
* This is the AppModule for the OSS version of Bitwarden.
* `bitwarden_license/bit-web/app.module.ts` contains the commercial version.
*
* You probably do not want to modify this file. Consider editing `oss.module.ts` instead.
*/
2018-06-05 05:10:41 +02:00
@NgModule({
2021-12-17 15:57:11 +01:00
imports: [
OssModule,
BrowserAnimationsModule,
FormsModule,
2022-07-26 19:34:45 +02:00
CoreModule,
2021-12-17 15:57:11 +01:00
InfiniteScrollModule,
DragDropModule,
LayoutModule,
2021-12-17 15:57:11 +01:00
OssRoutingModule,
WildcardRoutingModule, // Needs to be last to catch all non-existing routes
],
declarations: [AppComponent],
bootstrap: [AppComponent],
2018-06-05 05:10:41 +02:00
})
2021-12-17 15:57:11 +01:00
export class AppModule {}