https://github.com/robcresswell/nuxt-compress
A simple static asset compression module for Nuxt that runs Gzip and Brotli compression during the build process
https://github.com/robcresswell/nuxt-compress
brotli gzip nuxt nuxt-module nuxtjs
Last synced: 13 days ago
JSON representation
A simple static asset compression module for Nuxt that runs Gzip and Brotli compression during the build process
- Host: GitHub
- URL: https://github.com/robcresswell/nuxt-compress
- Owner: robcresswell
- License: mit
- Created: 2019-02-17T17:51:39.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2021-09-21T14:36:05.000Z (over 3 years ago)
- Last Synced: 2025-04-02T12:52:51.501Z (20 days ago)
- Topics: brotli, gzip, nuxt, nuxt-module, nuxtjs
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/nuxt-compress
- Size: 107 KB
- Stars: 103
- Watchers: 2
- Forks: 7
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nuxt-compress
A simple static asset compression module for Nuxt that runs Gzip and Brotli
compression during the build process.This is significantly more efficient than compressing files on the fly,
especially for Brotli compression, which sacrifices CPU time for greater
compression.For compression during runtime, see the `compressor` entry in the
[Nuxt configuration docs](https://nuxtjs.org/api/configuration-render/#compressor)## Getting Started
1. Install the module
```console
npm install -D nuxt-compress
```OR
```console
yarn add -D nuxt-compress
```2. Add `"nuxt-compress"` to your
[`buildModules`](https://nuxtjs.org/docs/2.x/configuration-glossary/configuration-modules#buildmodules)```js
module.exports = {
buildModules: ['nuxt-compress'],
};
```## Configuration
This module provides a simple interface to include
[compression-webpack-plugin](https://github.com/webpack-contrib/compression-webpack-plugin)
configured for both gzip and brotli compression.It uses the same configuration options, which can be supplied as a second
argument to the entry in `"modules"` in your `nuxt.config.js`, or as a distinct
entry with the key `"nuxt-compress"`. See the
[Nuxt Modules guide](https://nuxtjs.org/guide/modules/) for more information.For example:
```js
module.exports = {
modules: [
[
'nuxt-compress',
{
gzip: {
threshold: 8192,
},
brotli: {
threshold: 8192,
},
},
],
],
};
```OR
```js
module.exports = {
modules: ['nuxt-compress'],
'nuxt-compress': {
gzip: {
threshold: 8192,
},
brotli: {
threshold: 8192,
},
},
};
```