Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/content/12/en/part12c.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <i>app</i>. <i>app</i> is the name of the service specified in the <i>docker-compose.dev.yml</i> file:

```yml
Expand Down