fix(backend-assets): maintain eot fonts for cache

This commit is contained in:
ShiKhu 2021-12-19 15:42:21 +01:00
parent 734e9de96b
commit e842160571

View file

@ -43,7 +43,8 @@ func isCachable(rawurl string) bool {
ext == ".woff" ||
ext == ".woff2" ||
ext == ".ttf" ||
ext == ".otf"
ext == ".otf" ||
ext == ".eot"
}
func GetFullCachableURL(baseURL string, relativeURL string) (string, bool) {