docs: document admin environment variables (#11313)

This commit is contained in:
Shahed Nasser
2025-02-05 11:47:07 +02:00
committed by GitHub
parent 98236c8262
commit d348204fe5
12 changed files with 127 additions and 22 deletions
@@ -1992,8 +1992,8 @@ To initialize the JS SDK, create the file `src/admin/lib/sdk.ts` with the follow
import Medusa from "@medusajs/js-sdk"
export const sdk = new Medusa({
baseUrl: "http://localhost:9000",
debug: process.env.NODE_ENV === "development",
baseUrl: import.meta.env.VITE_BACKEND_URL || "/",
debug: import.meta.env.DEV,
auth: {
type: "session",
},