0

I am getting error:

@font-face failed OpenType embedding permission check. Permission must be Installable." in IE.

For resolving this I am adding the MIME type in web config. But the issue is still there.

Its working fine in other browser(Chrome,Mozilla). Using Umbraco version (Umbraco 7.4.3).

error

Dylan Slabbinck
  • 846
  • 1
  • 16
  • 27
AmanMiddha
  • 31
  • 1
  • 9

1 Answers1

0

You could try adding this in your web.config

<system.webServer>
    <staticContent>
        <remove fileExtension=".woff" />
        <mimeMap fileExtension=".woff" mimeType="application/octet-stream" />
    </staticContent>
</system.webServer>

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

Community
  • 1
  • 1
hardba11
  • 1,478
  • 15
  • 27