Skip to content

Commit 05d4e74

Browse files
author
Andrea Cosentino
committed
docs: update documentations
1 parent 14efce0 commit 05d4e74

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/guide/getting-started.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ const result = await getUsers();
155155
# ]
156156
```
157157

158-
## 🌐 Using real APIs in production
158+
## Using real APIs in production
159159

160160
In a real application, you usually want:
161161

@@ -207,7 +207,7 @@ In production, your application performs real HTTP requests.
207207

208208
:::
209209

210-
### 🧪 Optional: Environment variables
210+
### Optional: Environment variables
211211

212212
For more flexibility, use **`.env`** files:
213213

@@ -224,7 +224,7 @@ VITE_API_BASE_URL=https://api.example.com
224224
export const API_BASE_URL = import.meta.env.VITE_API_BASE_URL
225225
```
226226

227-
### 🔧 Alternative: Vite proxy
227+
### Alternative: Vite proxy
228228

229229
If you prefer not to define local endpoints, you can proxy requests:
230230

@@ -243,7 +243,7 @@ export default {
243243
}
244244
```
245245

246-
### 🧠 Summary
246+
### Summary
247247

248248
- define API routes as files during development
249249
- call them using **`fetch('/api/...')`**

0 commit comments

Comments
 (0)