I have a react project configured with Vite.
Hot reload works great, but I use react-i18next for multiple language support and this is my structure:
public
-> en
-> translation.json
-> ru
-> translation.json
When I change the translation.json files, Vite doesn't watch it, and I have to refresh the page to see the changes.
Is there a way to tell Vite to watch all the files in the public directory?
