Skip to content

alloc/vite-plugin-public

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vite-plugin-public

npm Code style: Prettier Donate

Postprocessing for /public

 

Usage

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.

import {publicHash} from 'vite-plugin-public'

export default {
  plugins: [
    publicHash({
      ignore: /^static\//,
    }),
  ]
}

Other plugins may be added in the future. Ideas and contributions welcome!