Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/rayriffy/astro-html-terser
- Owner: rayriffy
- Created: 2023-04-14T20:45:41.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-04-14T21:14:06.000Z (over 1 year ago)
- Last Synced: 2024-10-12T04:41:49.707Z (about 1 month ago)
- Language: TypeScript
- Homepage:
- Size: 46.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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()
]
})
```