“Comment servir CSS à Golang” Réponses codées

Comment servir CSS à Golang

// if you keep all css and js in a static folder
// you can use this

func main() {
  http.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir("static"))))
}
Doubtful Dragonfly

Comment servir CSS à travers

http.Handle("/", http.FileServer(http.Dir("css/")))
Relieved Ray

Réponses similaires à “Comment servir CSS à Golang”

Questions similaires à “Comment servir CSS à Golang”

Plus de réponses similaires à “Comment servir CSS à Golang” dans CSS

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code