Use woff instead of ttf font
This commit is contained in:
+4
-4
File diff suppressed because one or more lines are too long
@@ -709,6 +709,8 @@ func mimeTypeForFile(file string) string {
|
|||||||
return "image/png"
|
return "image/png"
|
||||||
case ".ttf":
|
case ".ttf":
|
||||||
return "application/x-font-ttf"
|
return "application/x-font-ttf"
|
||||||
|
case ".woff":
|
||||||
|
return "application/x-font-woff"
|
||||||
default:
|
default:
|
||||||
return mime.TypeByExtension(ext)
|
return mime.TypeByExtension(ext)
|
||||||
}
|
}
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
+1
-1
@@ -2,5 +2,5 @@
|
|||||||
font-family: 'Raleway';
|
font-family: 'Raleway';
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
src: local('Raleway'), url(raleway-500.ttf) format('truetype');
|
src: local('Raleway'), url(raleway-500.woff) format('woff');
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user