Skip to content

Commit d402574

Browse files
authored
Merge branch 'main' into develop
2 parents 6cf2d23 + 3ca9605 commit d402574

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

node-browser/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ COPY package.json package-lock.json ./
77
RUN npm i
88
RUN npm install -g @angular/cli
99

10-
COPY . .
10+
COPY . .

node-browser/src/app/app.module.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,14 @@ import { HttpClientModule } from '@angular/common/http';
2424
imports: [
2525
BrowserModule,
2626
HttpClientModule,
27-
RouterModule.forRoot([{ path: 'browse', component: BrowseComponent }]),
27+
RouterModule.forRoot(
28+
[
29+
{
30+
path: '',
31+
component: BrowseComponent
32+
}
33+
]
34+
),
2835
MatIconModule,
2936
MatTooltipModule,
3037
],

0 commit comments

Comments
 (0)