Skip to content

Commit 0e2332e

Browse files
committed
fix story configuration
1 parent 9365b53 commit 0e2332e

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

src/ui-shell/ui-shell.stories.ts

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,19 @@ export default {
1919
decorators: [
2020
applicationConfig({
2121
providers: [
22-
importProvidersFrom(RouterModule.forRoot([
23-
{
24-
path: "bar",
25-
component: BarComponent
26-
},
27-
{
28-
path: "foo",
29-
component: FooComponent
30-
}
31-
]))
22+
importProvidersFrom(RouterModule.forRoot(
23+
[
24+
{
25+
path: "bar",
26+
component: BarComponent
27+
},
28+
{
29+
path: "foo",
30+
component: FooComponent
31+
}
32+
],
33+
{ useHash: true }
34+
))
3235
]
3336
}),
3437
moduleMetadata({

0 commit comments

Comments
 (0)