Configure Vitest UI for network access

- 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 <noreply@anthropic.com>
This commit is contained in:
Thomas Richter
2025-12-18 21:13:45 +01:00
parent b52cdb0685
commit 24a44583ef

View File

@@ -16,5 +16,9 @@ export default defineConfig({
'tests/e2e/**'
]
}
},
server: {
host: '0.0.0.0',
port: 51204
}
});