Include version in CSS so that HTTP caches are not pointing to old versions
This commit is contained in:
parent
eda835f2f2
commit
c97111a594
3 changed files with 49 additions and 12 deletions
|
|
@ -2,43 +2,43 @@
|
|||
font-family: 'Interface';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url("https://rsms.me/interface/font-files/Interface-Regular.woff2") format("woff2"),
|
||||
url("https://rsms.me/interface/font-files/Interface-Regular.woff") format("woff");
|
||||
src: url("https://rsms.me/interface/font-files/Interface-Regular.woff2?v=1.1") format("woff2"),
|
||||
url("https://rsms.me/interface/font-files/Interface-Regular.woff?v=1.1") format("woff");
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Interface';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
src: url("https://rsms.me/interface/font-files/Interface-RegularItalic.woff2") format("woff2"),
|
||||
url("https://rsms.me/interface/font-files/Interface-RegularItalic.woff") format("woff");
|
||||
src: url("https://rsms.me/interface/font-files/Interface-RegularItalic.woff2?v=1.1") format("woff2"),
|
||||
url("https://rsms.me/interface/font-files/Interface-RegularItalic.woff?v=1.1") format("woff");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Interface';
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
src: url("https://rsms.me/interface/font-files/Interface-Medium.woff2") format("woff2"),
|
||||
url("https://rsms.me/interface/font-files/Interface-Medium.woff") format("woff");
|
||||
src: url("https://rsms.me/interface/font-files/Interface-Medium.woff2?v=1.1") format("woff2"),
|
||||
url("https://rsms.me/interface/font-files/Interface-Medium.woff?v=1.1") format("woff");
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Interface';
|
||||
font-style: italic;
|
||||
font-weight: 500;
|
||||
src: url("https://rsms.me/interface/font-files/Interface-MediumItalic.woff2") format("woff2"),
|
||||
url("https://rsms.me/interface/font-files/Interface-MediumItalic.woff") format("woff");
|
||||
src: url("https://rsms.me/interface/font-files/Interface-MediumItalic.woff2?v=1.1") format("woff2"),
|
||||
url("https://rsms.me/interface/font-files/Interface-MediumItalic.woff?v=1.1") format("woff");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Interface';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url("https://rsms.me/interface/font-files/Interface-Bold.woff2") format("woff2"),
|
||||
url("https://rsms.me/interface/font-files/Interface-Bold.woff") format("woff");
|
||||
src: url("https://rsms.me/interface/font-files/Interface-Bold.woff2?v=1.1") format("woff2"),
|
||||
url("https://rsms.me/interface/font-files/Interface-Bold.woff?v=1.1") format("woff");
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Interface';
|
||||
font-style: italic;
|
||||
font-weight: 700;
|
||||
src: url("https://rsms.me/interface/font-files/Interface-BoldItalic.woff2") format("woff2"),
|
||||
url("https://rsms.me/interface/font-files/Interface-BoldItalic.woff") format("woff");
|
||||
src: url("https://rsms.me/interface/font-files/Interface-BoldItalic.woff2?v=1.1") format("woff2"),
|
||||
url("https://rsms.me/interface/font-files/Interface-BoldItalic.woff?v=1.1") format("woff");
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue