前端之家收集整理的这篇文章主要介绍了
html – Google字体违反内容安全策略,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图使用Google字体,我从来没有遇到任何问题,但现在当我尝试
添加CSS
文件在我的
标题我得到这个
错误在控制台:
拒绝加载样式表“http://fonts.googleapis.com/css?family=Whatever”,因为它违反了以下Content Security Policy指令:“style-src”self”unsafe-inline’“。
这里有两件事要
解决:
>使用https作为Google字体链接(https://fonts.googleapis.com/css?family=Whatever)>在font-src指令中的style-src指令和https://fonts.gstatic.com中授权https://fonts.googleapis.com:“style-src”self“’unsafe-inline’https:// fonts。 googleapis.com; font-src’self’https://fonts.gstatic.com data:“
原文链接:https://www.f2er.com/html/232641.html