|
|
@@ -1,5 +1,6 @@
|
|
|
import {BrowserModule} from '@angular/platform-browser';
|
|
|
import {FormsModule} from '@angular/forms';
|
|
|
+import {HashLocationStrategy, LocationStrategy} from '@angular/common';
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
|
|
import {AppComponent} from './app.component';
|
|
|
@@ -41,7 +42,7 @@ import {TextMiningComponent} from './pages/text-mining/text-mining.component';
|
|
|
DotsModule,
|
|
|
MapModule,
|
|
|
],
|
|
|
- providers: [],
|
|
|
+ providers: [{provide: LocationStrategy, useClass: HashLocationStrategy}],
|
|
|
bootstrap: [AppComponent],
|
|
|
})
|
|
|
export class AppModule {}
|