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
-
ignore?: RegExp
Matching files are not hashed. -
skipRename?: boolean
Rewrite URLs but skip renaming files inoutDir
.
Useful when your Vite config is loaded more than once.
import {publicHash} from 'vite-plugin-public'
export default {
plugins: [
publicHash({
ignore: /^static\//,
}),
]
}
Other plugins may be added in the future. Ideas and contributions welcome!