jimblandy / serve-live

Serve a directory of static files, with server-sent events for automatic refresh.
GNU General Public License v3.0
4 stars 0 forks source link

Guess MIME types better #1

Open jimblandy opened 2 years ago

jimblandy commented 2 years ago

At the moment, serve_file hard-codes some rules for producing MIME types. Surely there's a crate that does this better. Or maybe warp's built-in static file server has this done already.

jimblandy commented 2 years ago

Warp uses the mime_guess crate for this.