nonzzz / vite-plugin-compression

vite plugin. compress your bundle file.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

codecov

Install

$ yarn add vite-plugin-compression2 -D

# or

$ npm install vite-plugin-compression2 -D

Usage

import { defineConfig } from 'vite'

import { compression } from 'vite-plugin-compression2'

export default defineConfig({
  plugins: [
    // ...your plugin
    compression()
  ]
})

Options

params type default description
include string | RegExp | Array<string | RegExp> `/.(html|xml|css|json|js|mjs|svg yaml
exclude string | RegExp | Array<string | RegExp> - Exclude all assets matching any of these conditions.
threshold number 0 Only assets bigger than this size are processed (in bytes)
algorithm string| function gzip The compression algorithm
compressionOptions Record<string,any> {} Compression options for algorithm(details see zlib module)
deleteOriginalAssets boolean false Whether to delete the original assets or not
skipIfLargerOrEqual boolean true Whether to skip the compression if the result is larger than or equal to the original file
filename string [path][base].gz The target asset filename

Q & A

FAQ

Others

  • If you want to analysis your bundle assets. Maybe you can try vite-bundle-analyzer

  • tarball option dest means to generate a tarball somewhere

  • tarball is based on the ustart. It should be compatible with all popular tar distributions out there (gnutar, bsdtar etc)

Sponsors

LICENSE

MIT

Author

Kanno

About

vite plugin. compress your bundle file.

License:MIT License


Languages

Language:TypeScript 87.8%Language:HTML 6.0%Language:JavaScript 4.0%Language:CSS 1.3%Language:Makefile 0.9%