With angular 7 universal, I'm run on client server with command:
npm run build:ssr && npm run serve:ssr
I have homepage with list products and product-detail with paramn getting from homepage.
In homepage.ts, to redirect to product-detail, I'm using:
this.router.navigate(['/product-detail', id]);
On brower, the url like: http://localhost:4000/product-detail/1
And product-detail page still loading But when I refresh page or access with url on brower, it not working.
I'm don't know how to fix that. Anyone can help? Please.