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:
JavaScript
x
6
1
public
2
-> en
3
-> translation.json
4
-> ru
5
-> translation.json
6
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?
Advertisement
Answer
You can achieve that with a plugin.
I made a mistake on my first answer, it should be a full-reload
event and not a update
event
JavaScript
1
18
18
1
export default function CustomHmr() {
2
return {
3
name: 'custom-hmr',
4
enforce: 'post',
5
// HMR
6
handleHotUpdate({ file, server }) {
7
if (file.endsWith('.json')) {
8
console.log('reloading json file...');
9
10
server.ws.send({
11
type: 'full-reload',
12
path: '*'
13
});
14
}
15
},
16
}
17
}
18
then add the plugin in vite.config.js
:
JavaScript
1
6
1
{
2
plugins: [
3
CustomHmr() <--- custom plugin
4
]
5
}
6
💡 I made you a repo on Github with a working example: