From 7c84a4b6ab3c4177d3ea9a80054586d1037811d2 Mon Sep 17 00:00:00 2001 From: Ben Hoyt Date: Mon, 20 Feb 2023 22:36:51 +0000 Subject: [PATCH] Fix README Handle path The main fix here is to add a trailing "/" to the `Handle` path -- without the trailing slash, `Handle` only handles the exact path "/assets", not "/assets/*". The `StripPrefix` path doesn't strictly need the trailing slash, but it's less confusing if they match. Also fix the ``, fsys.HashName("scripts/main.js")) fmt.Fprintf(w, ``) } ```