I have used router.navigate to redirect to a link. But it is opening the link in same tab. How can i make sure to open it in another tab?
const redirect = async () => {
router.navigate("https:google.com");
}
Also, is it possible to stop the prompt that comes every time when we redirect to the url ?