I am using Vite+Vue3 and JavaScript to build a SPA.
When npm run build runs, I get the following files in dist/assets/:
index.c14cf232.jsindex.a6c8e3b2.css
As can be seen the names include a hash.
I want the names to be the same always. For example:
index.code.jsindex.styles.js
How do we configure vite to produce fixed file names for Javascript and CSS bundles?