We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edd3c7d commit 9bcc88eCopy full SHA for 9bcc88e
internal/render/site.go
@@ -94,7 +94,7 @@ func Build(output string, live bool) error {
94
95
go func() {
96
http.Handle("/", http.FileServer(http.Dir(filepath.Join(".", "output"))))
97
- err := http.ListenAndServe(fmt.Sprintf("127.0.0.1:%d", ServePort), nil)
+ err := http.ListenAndServe(fmt.Sprintf("0.0.0.0:%d", ServePort), nil)
98
if err != nil {
99
panic(err)
100
}
0 commit comments