diff --git a/src/content/12/en/part12c.md b/src/content/12/en/part12c.md
index 5a78e955032..a843db3b66e 100644
--- a/src/content/12/en/part12c.md
+++ b/src/content/12/en/part12c.md
@@ -354,6 +354,13 @@ writing to stdout
...
```
+> If you have a problem connecting (`wget: server returned error: HTTP/1.1 403 Forbidden`), you will need to allow "app" in `defineConfig` in `vite.config.js`:
+> ```js
+> server: {
+> allowedHosts: ['app'],
+> }
+> ```
+
The URL is the interesting part here. We simply said to connect to port 5173 of the service app. app is the name of the service specified in the docker-compose.dev.yml file:
```yml