I am currently building a site using ReactJS and webpack to create it.
My text editor is set to encoding ISO-8859-15, and I use special or special characters such as é è à ç.
On my html page, I believe that I am using the correct configuration:
<meta charset="iso-8859-15">
But special characters are not displayed correctly:
Fran aisinstead of Françaisfor example.
I tried to install charset="utf-8", but nothing changed.
It seems to me that webpack is building with an encoding UTF-8that slows down my characters. How can I fix this problem?
source
share