Change JS, CSS, and other asset filenames during build in vite

By default, the build command in vite always changes the CSS and JS filenames. To have a unique JS and CSS filenames, the following build code can be added in vite.config.ts file. We can also have assetFileNames: `assets/[name].[ext]`. But with this code, the CSS file name is going to be style.css. To update it further,… Continue reading Change JS, CSS, and other asset filenames during build in vite

Published
Categorized as Others