skirda-go-launcher-interface/src/app/app.module.ts

38 lines
1.1 KiB
TypeScript
Raw Normal View History

2022-10-21 18:07:41 +00:00
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
2022-10-16 14:19:11 +00:00
import {
APP_BASE_HREF,
LocationStrategy,
HashLocationStrategy,
} from '@angular/common';
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
2022-10-17 18:48:28 +00:00
import { AppRoutingModule } from './modules/app-routing.module';
2022-10-16 14:19:11 +00:00
import { AppComponent } from './app.component';
2022-10-21 18:07:41 +00:00
import { GamesBarModule } from './components/games-bar/games-bar.module';
import { MainModule } from './components/main/main.module';
import { PlaygroundModule } from './components/playground/playground.module';
import { SandboxModule } from './components/sandbox/sandbox.module';
2022-10-21 19:30:40 +00:00
import { SignInModule } from './components/sign-in/sign-in.module';
2022-10-16 14:19:11 +00:00
@NgModule({
2022-10-17 18:48:28 +00:00
declarations: [AppComponent],
2022-10-21 18:07:41 +00:00
imports: [
BrowserModule,
AppRoutingModule,
BrowserAnimationsModule,
GamesBarModule,
MainModule,
PlaygroundModule,
SandboxModule,
2022-10-21 19:30:40 +00:00
SignInModule,
2022-10-21 18:07:41 +00:00
],
2022-10-16 14:19:11 +00:00
providers: [
{ provide: APP_BASE_HREF, useValue: '/' },
{ provide: LocationStrategy, useClass: HashLocationStrategy },
2022-10-21 18:07:41 +00:00
],
2022-10-16 14:19:11 +00:00
bootstrap: [AppComponent],
2022-10-21 18:07:41 +00:00
exports: [],
2022-10-16 14:19:11 +00:00
})
export class AppModule {}