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
@@ -3,7 +3,7 @@
"type": "module", "type": "module",
"sideEffects": false, "sideEffects": false,
"bin": "./dist/cli/index.js", "bin": "./dist/cli/index.js",
"version": "0.20.0", "version": "0.21.0-rc.0",
"description": "Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.", "description": "Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.",
"homepage": "https://bknd.io", "homepage": "https://bknd.io",
"repository": { "repository": {
+1 -1
View File
@@ -77,7 +77,7 @@ export class AppReduced {
withBasePath(path: string | string[], absolute = false): string { withBasePath(path: string | string[], absolute = false): string {
const paths = Array.isArray(path) ? path : [path]; 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) .filter(Boolean)
.join("/") .join("/")
.replace(/\/+/g, "/") .replace(/\/+/g, "/")