Before:
@font-face {
font-family: name;
src: url("../font.woff2") format("woff2"), url("../font.woff") format("woff");
}
After:
@font-face {
font-family: name;
src: url("../font.woff2") format("woff2"), url("font.woff") format("woff");
}
Notice that the ../ on the second url() gets removed.