Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建一个必须在其中加载 typekit 字体的 facebook 页面。
在 typekit 的工具包编辑器中,我输入了 facebook 应用程序的 url(打开应用程序选项卡时显示的 url)。
然后,我将 typekit 中的 javascript 包含在 facebook 页面上。
但是字体不加载。我在这里想念什么?
我最近遇到了类似的问题。诀窍是确保字体在可以加载的任何地方都被允许。您拥有的每个 typekit 都有一个 Typekit 设置,您可以在其中指定允许的域。它可能看起来像这样:
facebook.com,localhost,*.facebook.com,myapp.herokuapp.com,*.myapp.herokuapp.com
我不确定您是否需要所有这些,但该设置对我有用。“localhost”适用于我的本地开发环境,而 myapp.herokuapp.com 是我的应用程序所在的位置。