Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rayriffy/astro-html-terser

Astro plugin to minify HTML by using Terser
https://github.com/rayriffy/astro-html-terser

Last synced: 5 days ago
JSON representation

Astro plugin to minify HTML by using Terser

Awesome Lists containing this project

README

        

astro-html-terser
===

Astro plugin to minify HTML by using Terser

Usage
---

Install dependencies into your Astro site

```
pnpm add -D astro-html-terser
```

Then add into your Astro config file

```js
import html from 'astro-html-terser'

export default defineConfig({
integrations: [
html()
]
})
```