Skip to content

Commit

Permalink
updated packages
Browse files Browse the repository at this point in the history
  • Loading branch information
DoodleyJC committed Apr 3, 2024
1 parent a4f9a20 commit fee796b
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 27 deletions.
40 changes: 20 additions & 20 deletions bluenps/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 6 additions & 7 deletions bluenps/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,8 @@ import { DeleteComponent } from './delete/delete.component';
import { AppComponent } from './app.component';
import { HomePageComponent } from './home-page/home-page.component';
import { AppRoutingModule } from './app-routing.module';
const routes: Routes = [
{path:"test", component: DeleteComponent},
{path: "", component: DeleteComponent},
{path: "**", component: DeleteComponent}
];
import { HashLocationStrategy, LocationStrategy } from '@angular/common';


@NgModule({
declarations: [
Expand All @@ -21,10 +18,12 @@ const routes: Routes = [
imports: [
BrowserModule,
HttpClientModule,
RouterModule,
AppRoutingModule,
HashLocationStrategy,
LocationStrategy,
RouterModule
],
providers: [],
providers: [{provide: LocationStrategy, useClass: HashLocationStrategy}],
bootstrap: [AppComponent]
})
export class AppModule { }

0 comments on commit fee796b

Please sign in to comment.