iam使用Meteor Framwork(PREVIEW 0.7.1.2),我已经使用mrt安装了bootstrap-3,一切正常,但是从chrome iam的控制台中收到此警告:
Resource interpreted as Font but transferred with MIME type text/html: "http://localhost:3000/fonts/glyphicons-halflings-regular.woff"
Resource interpreted as Font but transferred with MIME type text/html: "http://localhost:3000/fonts/glyphicons-halflings-regular.ttf".
Resource interpreted as Font but transferred with MIME type text/html: "http://localhost:3000/fonts/glyphicons-halflings-regular.svg".
特别是在为控制台开发时,这非常烦人,
有人对此有解决办法吗?
谢谢
最佳答案
您的字体需要从Meteor应用程序的公用文件夹中提供。为此,您可以在公用文件夹内创建一个符号链接(symbolic link),以指向 bootstrap 安装中字体所在的位置。
编辑:
我下载了您正在使用的软件包,并检查了fonts文件夹的路径,使用下面的代码创建指向字体的符号链接(symbolic link)。 注意,它必须在项目的公共(public)目录中运行。
ln -s ../packages/bootstrap-3/fonts ./
关于twitter-bootstrap - 资源被解释为字体,但以MIME类型text/html : "http://localhost:3000/fonts/glyphicons-halflings-regular.woff"传输,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22415879/