作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们正在为我们的 mvc 项目使用盒式捆绑。我们遇到了一个问题,当我们将站点推送到我们的开发服务器时,某些字体文件没有进入cassette.axd。结果样式表显示了一个指向cassette.axd 中字体文件的链接,但是当试图拉出实际的url 时,我们得到了一个404。所以我没有包含字体,而是试图看看我们是否可以从cassette 中排除字体文件夹缩小。结构是..
Root
|Content
|css
|styles.css
|font
@font-face {
font-family: 'latolight_italic';
src: url('../font/lato-lightitalic-webfont.eot');
src: url('../font/lato-lightitalic-webfont.eot?#iefix') format('embedded-opentype'),
url('../font/lato-lightitalic-webfont.woff') format('woff'),
url('../font/lato-lightitalic-webfont.ttf') format('truetype'),
url('../font/lato-lightitalic-webfont.svg#latolight_italic') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'latoregular';
src: url('../font/lato-regular-webfont.eot');
src: url('../font/lato-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('../font/lato-regular-webfont.woff') format('woff'),
url('../font/lato-regular-webfont.ttf') format('truetype'),
url('../font/lato-regular-webfont.svg#latoregular') format('svg');
font-weight: normal;
font-style: normal;
}
最佳答案
找到了答案,至少它为我解决了on Google Groups .将此添加到 Web.config 中:
<staticContent>
<remove fileExtension=".eot" />
<remove fileExtension=".otf" />
<remove fileExtension=".svg" />
<remove fileExtension=".ttf" />
<remove fileExtension=".woff" />
<mimeMap fileExtension=".eot" mimeType="application/vnd.ms-fontobject" />
<mimeMap fileExtension=".otf" mimeType="application/x-font-opentype" />
<mimeMap fileExtension=".svg" mimeType="image/svg+xml" />
<mimeMap fileExtension=".ttf" mimeType="application/x-font-truetype" />
<mimeMap fileExtension=".woff" mimeType="application/x-font-woff" />
</staticContent>
关于cassette - 如何从盒式磁带捆绑中排除字体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18789107/
自从从 v1.1.0 升级到 v1.2.0 后,过去几周我遇到了 3 次磁带问题。我现在已经回滚到 v1.1.0,此后就再也没有遇到过这个问题。 我有一个在 C# 中使用 .NET 4.0 在 IIS
我目前正在开发一个原型(prototype) ASP.NET MVC 3 解决方案,它将用作多个项目重写(来自 Web 表单)的基础。 我的目标之一是实现一些跨应用程序的脚本管理,而不是我们目前没有的
我是一名优秀的程序员,十分优秀!