We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6cf2d23 + 3ca9605 commit d402574Copy full SHA for d402574
node-browser/Dockerfile
@@ -7,4 +7,4 @@ COPY package.json package-lock.json ./
7
RUN npm i
8
RUN npm install -g @angular/cli
9
10
-COPY . .
+COPY . .
node-browser/src/app/app.module.ts
@@ -24,7 +24,14 @@ import { HttpClientModule } from '@angular/common/http';
24
imports: [
25
BrowserModule,
26
HttpClientModule,
27
- RouterModule.forRoot([{ path: 'browse', component: BrowseComponent }]),
+ RouterModule.forRoot(
28
+ [
29
+ {
30
+ path: '',
31
+ component: BrowseComponent
32
+ }
33
+ ]
34
+ ),
35
MatIconModule,
36
MatTooltipModule,
37
],
0 commit comments