Default page for anonymous user

You may try use add a function in server side Global Code, e.g. (v2021.0.7 or newer)

function myStartPage() {
return IsLoggedIn() ? "dash" : "home";
}

and set the Start Page as “myStartPage”.