How can I have a page in Angular reload only once when a user visits it?
This is my attempt:
In the homepage component, I added the following code:
export class HomepageComponent implements OnInit {
constructor() { }
ngOnInit() {
location.reload();
}
}
However, the page keeps refreshing continuously. How can I ensure that it reloads only once on initialization?