From 771e071005aaf6e3a1d093b0a0f1b6465b7b6b1a Mon Sep 17 00:00:00 2001 From: "Mr.Pal" <45233617+joypal23jkp@users.noreply.github.com> Date: Mon, 12 Jun 2023 02:12:47 +0600 Subject: [PATCH] Updated the configuration setup docs. Figured out that need to just add MONGODB_URI to .env if only need to provide URI. --- docs/content/1.getting-started/1.setup.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/content/1.getting-started/1.setup.md b/docs/content/1.getting-started/1.setup.md index cd9eda1..068a33a 100644 --- a/docs/content/1.getting-started/1.setup.md +++ b/docs/content/1.getting-started/1.setup.md @@ -49,3 +49,8 @@ export default defineNuxtConfig({ }, }) ``` +If you want to configure only the `uri` just add `MONGODB_URI` in your `.env` file. + +```env +MONGODB_URI=YOUR_MONGO_URI +```