nuxt-brotli
nuxt-brotli copied to clipboard
Nuxt.js module which compresses assets with Brotli compression algorithm using `iltorb` library for serving it with `ngx_brotli`
nuxt-brotli
This Nuxt.js module compresses assets with Brotli compression algorithm using iltorb library for serving it with ngx_brotli.
Installation
$ npm i nuxt-brotli
Usage
Add nuxt-brotli to modules section of nuxt.config.js
{
modules: ['nuxt-brotli']
}
Arguments:
asset: The target asset name. Defaults to'[path].br[query]'.[file]is replaced with the original asset file name.[fileWithoutExt]is replaced with the file name minus its extension, e.g. thestyleofstyle.css.[ext]is replaced with the file name extension, e.g. thecssofstyle.css.[path]is replaced with the path of the original asset.[query]is replaced with the query.
test: All assets matching this RegExp are processed. Defaults to/\.(js|css|html|svg)$/.threshold: Only assets bigger than this size (in bytes) are processed. Defaults to0.minRatio: Only assets that compress better that this ratio are processed. Defaults to0.8.deleteOriginalAssets: remove original files that were compressed with brotli. Default: false
Optional arguments for Brotli (see iltorb doc for details):
mode: Default: 0,quality: Default: 11,lgwin: Default: 22,lgblock: Default: 0,size_hint: Default: 0,disable_literal_context_modeling: Default: false