From 24a44583efba4b0fe8cc47875a41f906994cf796 Mon Sep 17 00:00:00 2001 From: Thomas Richter Date: Thu, 18 Dec 2025 21:13:45 +0100 Subject: [PATCH] Configure Vitest UI for network access MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Set server host to 0.0.0.0 for remote access - Set explicit port 51204 for Vitest UI - Allows accessing test UI from other machines 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- vitest.config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vitest.config.js b/vitest.config.js index ac6e436..97d11ff 100644 --- a/vitest.config.js +++ b/vitest.config.js @@ -16,5 +16,9 @@ export default defineConfig({ 'tests/e2e/**' ] } + }, + server: { + host: '0.0.0.0', + port: 51204 } });