Postprocessing for /public
npm install vite-plugin-public


> Postprocessing for /public
The publicHash plugin helps you add content hashes to all or some files
from the /public directory.
Note: This plugin depends on #1647 and #1675
#### Options
- ignore?: RegExp
Matching files are not hashed.
- skipRename?: boolean
Rewrite URLs but skip renaming files in outDir.
Useful when your Vite config is loaded more than once.
``ts
import {publicHash} from 'vite-plugin-public'
export default {
plugins: [
publicHash({
ignore: /^static\//,
}),
]
}
``
Other plugins may be added in the future. Ideas and contributions welcome!