From 526ae6edc7675ccab41f7b854cc277088f02e0ab Mon Sep 17 00:00:00 2001 From: demo Date: Thu, 7 May 2026 16:00:07 -0400 Subject: feat: add some demo CSS --- main.go | 1 + 1 file changed, 1 insertion(+) (limited to 'main.go') diff --git a/main.go b/main.go index f070c9b..5db260b 100644 --- a/main.go +++ b/main.go @@ -48,6 +48,7 @@ func main() { // Set up the handlers and server. mux := http.NewServeMux() mux.Handle("/{arc}", &cfg) + mux.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir("views/static")))) log.Fatal(runServer(mux, *port)) } -- cgit v1.2.3