From ff216ec4e57df531c41cbe03dee04e65695eba62 Mon Sep 17 00:00:00 2001 From: dswbx Date: Sat, 14 Mar 2026 13:55:26 +0100 Subject: [PATCH] chore: remove unused admin_basepath and bump version to 0.21.0-rc.0 --- app/package.json | 2 +- app/src/ui/client/utils/AppReduced.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/package.json b/app/package.json index ceb3771e..c76bde02 100644 --- a/app/package.json +++ b/app/package.json @@ -3,7 +3,7 @@ "type": "module", "sideEffects": false, "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.", "homepage": "https://bknd.io", "repository": { diff --git a/app/src/ui/client/utils/AppReduced.ts b/app/src/ui/client/utils/AppReduced.ts index 353faa40..3b493ce7 100644 --- a/app/src/ui/client/utils/AppReduced.ts +++ b/app/src/ui/client/utils/AppReduced.ts @@ -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, "/")