react 将项目打包成一个js文件,并且使用 Radio Canada 字体
https://fonts.google.com/?stroke=Sans+Serif&preview.text=AI%20Assistance%20Experience&query=Noto+Sans
下载字体 放到项目中
再index.ts 中引入
import ttf from "./assets/font/Radio_Canada/static/RadioCanada_Condensed-Bold.ttf";
let style = document.createElement("style");
style.innerHTML = `@font-face{src:url(${ttf});font-family: Radio Canada;}`;
document.head.appendChild(style);
就可以正常使用该字体 了