Relase #1

Open
martials wants to merge 13 commits from develop into master
Showing only changes of commit b1061e56c6 - Show all commits

View File

@ -8,7 +8,7 @@ let paths: string[]
if (pathname === "/") {
paths = ["~"]
} else {
paths = ["~", ...pathname.split("/").slice(1)]
paths = ["~", ...pathname.split("/").filter(x => x)]
}
function getLink(path: string): NavLink {