mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 04:27:37 +03:00
Force correct mime-type for JS and CSS files
This commit is contained in:
parent
86fe1e3b2c
commit
e966d94c0b
1 changed files with 4 additions and 0 deletions
|
@ -57,4 +57,8 @@ func init() {
|
|||
for ext, typ := range imageFormats {
|
||||
_ = mime.AddExtensionType(ext, typ)
|
||||
}
|
||||
|
||||
// In some circumstances, Windows sets JS mime-type to `text/plain`!
|
||||
_ = mime.AddExtensionType(".js", "text/javascript")
|
||||
_ = mime.AddExtensionType(".css", "text/css")
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue