gpt4 book ai didi

cassette - 如何从盒式磁带捆绑中排除字体

转载 作者:行者123 更新时间:2023-12-04 20:45:22 31 4
gpt4 key购买 nike

我们正在为我们的 mvc 项目使用盒式捆绑。我们遇到了一个问题,当我们将站点推送到我们的开发服务器时,某些字体文件没有进入cassette.axd。结果样式表显示了一个指向cassette.axd 中字体文件的链接,但是当试图拉出实际的url 时,我们得到了一个404。所以我没有包含字体,而是试图看看我们是否可以从cassette 中排除字体文件夹缩小。结构是..

Root
|Content
|css
|styles.css
|font

style.css 中包含以下内容...
@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;
}

在来自盒式磁带的结果 style.css 中,对字体的引用类似于...

src: url('/newdesign/cassette.axd/file/Content/font/lato-regular-webfont-5daaab4d79c85c0ac9f932c4848f08f673f3e6c4.eot'

有没有办法排除font文件夹,让css文件中的src继续指向font文件夹而不是盒式磁带结果?

最佳答案

找到了答案,至少它为我解决了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/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com