mirror of
https://github.com/youzan/vant.git
synced 2025-10-19 10:07:07 +00:00
9 lines
204 B
JavaScript
9 lines
204 B
JavaScript
module.exports = (fontName, hash) => {
|
|
return `@font-face {
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
font-family: '${fontName}';
|
|
src: url('./${fontName}-${hash}.ttf') format('truetype');
|
|
}`;
|
|
};
|