Fix content type for config.js

pull/149/head
Philipp Heckel 2022-03-11 15:56:54 -05:00
parent 70538783d8
commit 750be7f07e
1 changed files with 2 additions and 2 deletions

View File

@ -340,7 +340,7 @@ func (s *Server) handleWebConfig(w http.ResponseWriter, r *http.Request) error {
appRoot = "/app"
}
disallowedTopicsStr := `"` + strings.Join(disallowedTopics, `", "`) + `"`
w.Header().Set("Content-Type", "application/json")
w.Header().Set("Content-Type", "text/javascript")
_, err := io.WriteString(w, fmt.Sprintf(`// Generated server configuration
var config = {
appRoot: "%s",