2.0.2 • Published 4 years ago

vite-plugin-public v2.0.2

Weekly downloads
8
License
MIT
Repository
github
Last release
4 years ago

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!