Is there a way to set the content-header’s charset on static sites? Currently, it appears to provide the header content-type: text/plain
for text files; I’d like it to append the charset, i.e., content-type: text/plain; charset=utf-8
for text files.
I know that I can prepend a BOM to my text files before uploading them, and this does work in the browsers I’ve tested, but I’m not sure it’s a generally good idea.