I have a form that is supposed to encode data as application/x-www-form-urlencoded but on the server I always get multipart/form-data. As far as I understand the Turbo source code, it passes a FormData object to the fetch API, which will always be encoded as multipart/form-data.
Is there an option to tell Turbo to urlencode my data, that I missed? If not, is it planed for the future? Or is there a good reason to not use urlencoded forms, which I don’t get?