When you install bugnet on a IIS 7.0 you have to add follow config to the web.config:
```
<system.webServer>
<staticContent>
<remove fileExtension=".woff" />
<mimeMap fileExtension=".woff" mimeType="application/font-woff" />
</staticContent>
</system.webServer>
```
In IIS 7.5 works it fine without this code.
```
<system.webServer>
<staticContent>
<remove fileExtension=".woff" />
<mimeMap fileExtension=".woff" mimeType="application/font-woff" />
</staticContent>
</system.webServer>
```
In IIS 7.5 works it fine without this code.