zig build dev only prints http://localhost:3000. Other frameworks (Vite, Next) also show a Network URL so you can open the app from another device on the same Wi-Fi:
Local: http://localhost:3000
Network: http://192.168.x.x:3000
The dev proxy already binds to 0.0.0.0 (src/cli/dev.zig), so it's already reachable over the LAN, we just don't print the IP.
zig build dev only prints http://localhost:3000. Other frameworks (Vite, Next) also show a Network URL so you can open the app from another device on the same Wi-Fi:
Local: http://localhost:3000
Network: http://192.168.x.x:3000
The dev proxy already binds to 0.0.0.0 (src/cli/dev.zig), so it's already reachable over the LAN, we just don't print the IP.