chore: remove unused admin_basepath and bump version to 0.21.0-rc.0

This commit is contained in:
dswbx
2026-03-14 13:55:26 +01:00
committed by Cameron Pak
parent feb3911d46
commit ff216ec4e5
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -77,7 +77,7 @@ export class AppReduced {
withBasePath(path: string | string[], absolute = false): string {
const paths = Array.isArray(path) ? path : [path];
return [absolute ? "~" : null, this.options.basepath, this.options.admin_basepath, ...paths]
return [absolute ? "~" : null, this.options.basepath, ...paths]
.filter(Boolean)
.join("/")
.replace(/\/+/g, "/")