Skip to content

Commit 9bcc88e

Browse files
committed
all interfaces
1 parent edd3c7d commit 9bcc88e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/render/site.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ func Build(output string, live bool) error {
9494

9595
go func() {
9696
http.Handle("/", http.FileServer(http.Dir(filepath.Join(".", "output"))))
97-
err := http.ListenAndServe(fmt.Sprintf("127.0.0.1:%d", ServePort), nil)
97+
err := http.ListenAndServe(fmt.Sprintf("0.0.0.0:%d", ServePort), nil)
9898
if err != nil {
9999
panic(err)
100100
}

0 commit comments

Comments
 (0)