#How to make Tauri run a build command prior to refreshing
9 messages · Page 1 of 1 (latest)
nope, there's no such thing in tauri itself. You'd have to add it yourself somehow (custom file watcher?)
Ah okay so e.g. vite is having people disable auto reloading or something and injecting their own refresh mechanism or something?
not sure what you mean tbh
vite's hot reload works fine in tauri apps
but it's uncoupled to tauri's own reload
and tauri doesn't even know about it
Right, understood. So if I have custom tooling I'd need to make a custom reload mechanism/watcher/etc. too.