I'm using vite 2.9.13 which is the latest version I believe.
Also still using Vue 2 if that makes a difference here.
When deploying I'm building assets in my Github Actions so as to not need to have node_modules installed on my server.
But this then eliminates the the cache files generated on build, so I've set a new cacheDir value in my vite config:
cacheDir: '.deps'
But when I build I get nothing in .deps and nothing in the default node_modules/.vite
Any idea what I need to do to get cache files to build in a different directory?