Skip to content

Commit 00007bd

Browse files
authored
Clarify environment variable syntax in documentation
Updated environment variable assignments for clarity.
1 parent b8c385e commit 00007bd

File tree

1 file changed

+8
-2
lines changed
  • www/apps/cloud/app/environments/custom-domains

1 file changed

+8
-2
lines changed

www/apps/cloud/app/environments/custom-domains/page.mdx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,20 @@ Based on your storefront framework, update the backend environment variable:
6262
<CodeTab label="Next.js" value="nextjs">
6363

6464
```shell
65-
NEXT_PUBLIC_MEDUSA_BACKEND_URL # Your Medusa backend's URL
65+
NEXT_PUBLIC_MEDUSA_BACKEND_URL= # Your Medusa backend's URL
66+
# Update any other envionment variable that uses the Medusa backend URL
67+
# For example:
68+
MEDUSA_BACKEND_URL= # Your Medusa backend's URL
6669
```
6770

6871
</CodeTab>
6972
<CodeTab label="SvelteKit / Tanstack Start" value="sveltekit-tanstack">
7073

7174
```shell
72-
VITE_MEDUSA_BACKEND_URL # Your Medusa backend's URL
75+
VITE_MEDUSA_BACKEND_URL= # Your Medusa backend's URL
76+
# Update any other envionment variable that uses the Medusa backend URL
77+
# For example:
78+
MEDUSA_BACKEND_URL= # Your Medusa backend's URL
7379
```
7480

7581
</CodeTab>

0 commit comments

Comments
 (0)