Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Grzegorz Choiński <[email protected]>
  • Loading branch information
Wallted committed Jan 26, 2024
1 parent d92381f commit dd96b18
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 0 additions & 2 deletions Foodie/ClientApp/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ import { MatAutocompleteModule } from '@angular/material/autocomplete';
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
import { MatTooltipModule } from '@angular/material/tooltip';
import { MatProgressBarModule } from '@angular/material/progress-bar';
import { CountoModule } from 'angular2-counto';
import { DataComponent } from './data/data.component';
import * as Hammer from 'hammerjs';
import { StartingComponent } from './starting/starting.component';
Expand Down Expand Up @@ -87,7 +86,6 @@ export class MyHammerConfig extends HammerGestureConfig {
MatProgressSpinnerModule,
MatTooltipModule,
MatProgressBarModule,
CountoModule,
MatIconModule,
MatChipsModule,
MatRadioModule,
Expand Down
3 changes: 2 additions & 1 deletion Foodie/ClientApp/src/app/app.server.module.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import { NgModule } from '@angular/core';
import { ServerModule } from '@angular/platform-server';
import { ModuleMapLoaderModule } from '@nguniversal/module-map-ngfactory-loader';
import { AppComponent } from './app.component';
import { AppModule } from './app.module';

@NgModule({
imports: [AppModule, ServerModule],
imports: [AppModule, ServerModule, ModuleMapLoaderModule],
bootstrap: [AppComponent]
})
export class AppServerModule { }
5 changes: 3 additions & 2 deletions Foodie/ClientApp/src/polyfills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,9 @@
/***************************************************************************************************
* Zone JS is required by default for Angular itself.
*/
import 'zone.js/dist/zone'; // Included with Angular CLI.

// import 'zone.js/dist/zone'; // Included with Angular CLI.
import 'zone.js';
import 'zone.js/testing';

/***************************************************************************************************
* APPLICATION IMPORTS
Expand Down

0 comments on commit dd96b18

Please sign in to comment.