From b272ed80447a7404f1b2bef3c4d40d8c30ca5de1 Mon Sep 17 00:00:00 2001 From: Smile Rex Date: Mon, 26 Jan 2026 19:06:15 +0300 Subject: [PATCH] fix --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"