diff --git a/main.go b/main.go index 39c13a5..415aade 100644 --- a/main.go +++ b/main.go @@ -6,7 +6,7 @@ import ( ) func main() { - fs := http.FileServer(http.Dir("./dist")) + fs := http.FileServer(http.Dir("./build")) http.Handle("/", fs) addr := ":3000"