Hi,
I want my static content (js, css and images) to be compressed. I've added this to my web.config but no luck, it is still not compressed.
<system.webServer>
<urlCompression doStaticCompression="true" />
<httpCompression>
<staticTypes>
<add mimeType="*/*" enabled="true" />
</staticTypes>
</httpCompression>
</system.webServer>
what else should I do ?
thanks