I canβt check it now, but IIRC: s/"./css"/"css"/ ; s/"./js"/"js"/ .
EDIT: Now that I can finally check the sources: this is what I did and what works for me:
http.Handle("/scripts/", http.FileServer(http.Dir(""))) http.Handle("/images/", http.FileServer(http.Dir("")))
All images in ./images/*.{gif,png,...} are received correctly. The same story about scripts.
source share