gpt4 book ai didi

ruby-on-rails - 如何在 Firefox 中显示 Font Awesome 图标?

转载 作者:行者123 更新时间:2023-12-02 06:03:48 24 4
gpt4 key购买 nike

我将 Font-Awesome-Sass-Rails gem 用于图标字体,它们在除 Firefox 之外的所有浏览器中都能正常显示。我目前正在使用 Cloudfront 和 Nginx。这是我的 CORS 配置:

<?xml version="1.0" encoding="UTF-8"?>
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
<CORSRule>
<AllowedOrigin>*</AllowedOrigin>
<AllowedMethod>GET</AllowedMethod>
<MaxAgeSeconds>3000</MaxAgeSeconds>
<AllowedHeader>*</AllowedHeader>
</CORSRule>
</CORSConfiguration>

有什么想法吗?

最佳答案

如果上面的答案不能解决任何人的问题,那么这是我的有效解决方案:

# Cross domain webfont access
location ~* \.(?:ttf|ttc|otf|eot|woff|font.css)$ {
add_header "Access-Control-Allow-Origin" "*";
expires 1M;
access_log off;
add_header Cache-Control "public";
}

关于ruby-on-rails - 如何在 Firefox 中显示 Font Awesome 图标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15080434/

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