From 686eecb67d01eb45c03690e17bc20d05e8b2998e Mon Sep 17 00:00:00 2001 From: bh0fer Date: Thu, 1 Jan 2026 11:59:02 +0000 Subject: [PATCH] fix(dx): configure devcontainer to use the host network Add "--network=host" to tell docker to re-use the network connections of the host machine. Otherwise the host system can't reach the dev-server inside the devcontainer (what is the default on Windows+WSL2, in which case the browser spins forever loading localhost:3000). --- .devcontainer/devcontainer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index fcc62bf31d9e..4354f3c401e3 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -33,5 +33,6 @@ "version": "22" }, "github-cli": "latest" - } + }, + "runArgs": ["--network=host"] }