I am serving HTML statically, and the HTML includes a script-tag, e.g.:
<script src="./client.js" type="module"></script>
./client.js is a file in the public directory, so my understanding is that this should work.
However, Dinatra handles this as a standard response, not a static response. Because of this,
appropriate content-type header is not set, and the browser does not load the file.