From b2048fab5c94162bebfe39e55088d9bbb756f5e2 Mon Sep 17 00:00:00 2001 From: Michael Rosenberg Date: Mon, 12 Sep 2022 03:44:26 -0400 Subject: [PATCH] Made dev bind to 0.0.0.0 --- scripts/dev.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/dev.sh b/scripts/dev.sh index 20329b7..7281e73 100755 --- a/scripts/dev.sh +++ b/scripts/dev.sh @@ -8,7 +8,8 @@ IFS=$'\n\t' CARGO_TARGET_DIR=target-trunk \ RUSTFLAGS=--cfg=web_sys_unstable_apis \ trunk serve \ - --port 9382' \ + --port 9382 \ + --address 0.0.0.0' \ & \ bash -c ' \ cd server; \