fix(launcher): embed favicon.svg in binary to fix 404

Add favicon.svg to go:embed directive so it is included
in the compiled binary and served correctly at /favicon.svg
This commit is contained in:
wangyanfu2 2026-03-06 10:49:20 +08:00
parent b835a6e7ca
commit 9ac398569e

View file

@ -27,7 +27,7 @@ import (
"github.com/sipeed/picoclaw/cmd/picoclaw-launcher/internal/server"
)
//go:embed internal/ui/index.html
//go:embed internal/ui/index.html internal/ui/favicon.svg
var staticFiles embed.FS
func main() {