diff --git a/website/docs/guides/routing.mdx b/website/docs/guides/routing.mdx index 9596bb20b..7551e110f 100644 --- a/website/docs/guides/routing.mdx +++ b/website/docs/guides/routing.mdx @@ -16,4 +16,12 @@ const router = createRouter({ //... ], }) +``` + +## Angular + +The recommended approach for routing in Angular is [HashLocationStrategy](https://codecraft.tv/courses/angular/routing/routing-strategies/#_hashlocationstrategy): + +```ts +RouterModule.forRoot(routes, {useHash: true}) ``` \ No newline at end of file