diff --git a/web/static.go b/web/static.go index 2c9120cbda..79e61d504a 100644 --- a/web/static.go +++ b/web/static.go @@ -126,11 +126,13 @@ func staticFilesHandler(handler http.Handler) http.Handler { func brotliFilesHandler(handler http.Handler) http.Handler { return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - isRequestingBrotliFile, contentType := requestingBrotliFileExtension(r) - if isRequestingBrotliFile && acceptsEncodingBrotli(r) { - r.URL.Path = r.URL.Path + ".br" - w.Header().Set("Content-Encoding", "br") - w.Header().Set("Content-Type", contentType) + if model.BuildNumber != "dev" { + isRequestingBrotliFile, contentType := requestingBrotliFileExtension(r) + if isRequestingBrotliFile && acceptsEncodingBrotli(r) { + r.URL.Path = r.URL.Path + ".br" + w.Header().Set("Content-Encoding", "br") + w.Header().Set("Content-Type", contentType) + } } handler.ServeHTTP(w, r)