We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f77d996 + 728e2df commit 09f8284Copy full SHA for 09f8284
libraries/ESP8266WebServer/src/detail/RequestHandlersImpl.h
@@ -127,6 +127,7 @@ class StaticRequestHandler : public RequestHandler {
127
else if (path.endsWith(".pdf")) return "application/pdf";
128
else if (path.endsWith(".zip")) return "application/zip";
129
else if(path.endsWith(".gz")) return "application/x-gzip";
130
+ else if (path.endsWith(".appcache")) return "text/cache-manifest";
131
return "application/octet-stream";
132
}
133
0 commit comments