Add back markdown as a mime type to WebServerSimple as it got deleted accidentally.

This commit is contained in:
Relintai 2023-08-28 18:14:14 +02:00
parent 8f352b745a
commit bc21dc55a7

View File

@ -614,6 +614,7 @@ HTTPServerSimple::HTTPServerSimple() {
mimes["opus"] = "audio/opus";
mimes["bmp"] = "image/bmp";
mimes["csv"] = "text/csv";
mimes["md"] = "text/markdown";
server.instance();
stop();