So I recently installed prettier and whenever I save my file it adds the forwards slash in a self-closing tag. I was wondering how to stop it from doing this?
Here is what I mean:-
<!-- Instead of this ↓ -->
<input type="text">
<!-- It does this ↓ -->
<input type="text" />
Thank you in advance