Friday, February 3, 2017

CSS3114: @font-face failed OpenType embedding permission check. Permission must be Installable (Google Fonts Offline)

Error: CSS3114: @font-face failed OpenType embedding permission check. Permission must be Installable

Solution: Add mimemap to web.config file under <system.webServer> section


Script:
<staticcontent>
      <remove fileextension=".woff"/>
      <mimemap fileextension=".woff" mimetype="application/octet-stream"/>
</staticcontent>


No comments:

Post a Comment

Access to XMLHttpRequest at 'from origin has been blocked by CORS policy: Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https. .net core angular

Issue: The angular application was getting error from API that the origin has been blocked by CORS policy. Solution: Make sure that the...