fix: remove quotes from nuxt tutorial .env file

.env files should not have double quotes. Doing so may add the double quotes into the actual string at runtime.

See https://nuxt.com/docs/guide/directory-structure/env
This commit is contained in:
Steven Nguyen
2024-05-15 10:53:16 -07:00
committed by GitHub
parent 056c563f3b
commit 48bd2d323d

View File

@@ -46,8 +46,8 @@ Your project id is located in the **Settings** page in the Appwrite console.
Add a `.env` file to the root directory and add the following code to it, replacing `YOUR_PROJECT_ID` with your project id.
```
VITE_APPWRITE_ENDPOINT="https://cloud.appwrite.io/v1"
VITE_APPWRITE_PROJECT="YOUR_PROJECT_ID"
VITE_APPWRITE_ENDPOINT=https://cloud.appwrite.io/v1
VITE_APPWRITE_PROJECT=YOUR_PROJECT_ID
```
# Initialize Appwrite SDK {% #init-sdk %}