Type: Bug
Pass localAlias option to renderFont and you will get weird output:
@font-face {
font-weight: 400;
src: {src} /* <---- ???????? */ local('Segoe WP Light'), url('...') format('woff2');
font-family:"Segoe UI"
}
| Packages |
Version |
| fela |
10.4.1 |
Description
Issue comes from broken template string in generateFontSource():
-return `{src} local(${localUrl}), `
+return `${src} local(${localUrl}), `
Type: Bug
Pass
localAliasoption torenderFontand you will get weird output:Description
Issue comes from broken template string in
generateFontSource():