export default function redirectTo(route: string) { const split_location = window.location.href.split('/') const hostname = split_location.slice(0, split_location.length - 1).join('/'); window.location.href = hostname + route; }