Failed to decode downloaded font, OTS parsing error: invalid version tag + rails 4

后端 未结 25 1544
长发绾君心
长发绾君心 2020-12-04 11:46

I am doing assets pre-compile, and running the application in production mode. After compilation when I load the my index page I got followings warnings in the chrome consol

25条回答
  •  长情又很酷
    2020-12-04 12:28

    Just state format at @font-face as following:

    @font-face {
      font-family: 'Some Family';
      src: url('/fonts/fontname.ttf') format('ttf'); /* and this for every font */
    }

提交回复
热议问题