Spaces:
Sleeping
Sleeping
File size: 366 Bytes
43a06dc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import { browser } from "$app/environment";
const defaultNavPage = (page: "settings" | "about") => {
if (browser && window.innerWidth <= 750) {
return `/${page}`;
}
switch (page) {
case "settings":
return "/settings/appearance";
case "about":
return "/about/general";
}
}
export { defaultNavPage };
|