From 1a4235c98c7e8cacdb48b22506910449ee5b078d Mon Sep 17 00:00:00 2001 From: Paddy Date: Thu, 26 Sep 2024 14:29:14 +0200 Subject: [PATCH] Improve local dev docs a bit --- src/content/docs/docs/start-here/local-development.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/docs/start-here/local-development.md b/src/content/docs/docs/start-here/local-development.md index c94374c..c38e142 100644 --- a/src/content/docs/docs/start-here/local-development.md +++ b/src/content/docs/docs/start-here/local-development.md @@ -26,7 +26,7 @@ The mock server is close in functionality with the real server. You can log in o ## Connect your app to the mock server -Whenever you run your app with `NODE_ENV=development`, the Bazaar library will automatically connect to http://localhost:3377. You can also change this URL manually when creating a BazaarApp. +When running your app in development mode, the Bazaar library will automatically connect to mock server URL by defaulting `bazaarUri` to `http://localhost:3377`. In production, `bazaarUri` is set to `https://cloud.bzr.dev`. You can optionally set this URL when creating a BazaarApp. ```js import { BazaarApp } from "@bzr/bazaar";