I'm working with content collections made out of .json files, and I'm running into encoding problems.
The JSON files are generated by Python, in (what seems to be) valid UTF-8 encoded bytestreams... but when I make stuff out of them in Astro, I get stuff like "brewer’" when it should be "brewery's".
(I tried forcing the json to be ASCII, but that doesn't work either)
I've assumed that Astro would just use the default encoding of my computer, which (I think) is UTF-8 for all kinds of run times.
What's the "right thing to do" here? Do I have to tell Astro what kind of json it can eat or how to eat it?