fix
All checks were successful
Create and publish a Docker image 🚀 / build-and-push-image (push) Successful in 1m19s

This commit is contained in:
Smile Rex
2026-01-26 19:06:15 +03:00
parent 50ac188fa0
commit b272ed8044

View File

@@ -6,7 +6,7 @@ import (
) )
func main() { func main() {
fs := http.FileServer(http.Dir("./dist")) fs := http.FileServer(http.Dir("./build"))
http.Handle("/", fs) http.Handle("/", fs)
addr := ":3000" addr := ":3000"