How to make server to return manifest file with text/cache-manifest content type? By default, if I put it to the server and include into <html manifest="cache.manifest"> it is being loaded with type application/x-ms-manifest.
How to make server to return manifest file with text/cache-manifest content type? By default,
Share
That’s one of the reasons why the recommended extension for manifest files is now
.appcache– Microsoft is already using.manifestfor something else. To configure content types:mimeMapentry understaticContentin your web.config like<mimeMap fileExtension=".appcache" mimeType="text/cache-manifest" />