leoortizz / astro-minify-html

Astro integration to minify HTML

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

astro-minify-html

This Astro integration minifies your static HTML output using html-minifier-terser on build time.

Installation

Install the integration using your preferred package manager.

astro add

npx astro add astro-minify-html

Manually

npm install -D astro-minify-html
// astro.config.
import { minifyHtml } from "astro-minify-html"

export default defineConfig({
  integrations: [minifyHtml()],
})

Options

Refer to the html-minifier-terser documentation for available options.

export default defineConfig({
  integrations: [htmlMinifier({ removeComments: true })],
})

About

Astro integration to minify HTML

License:MIT License


Languages

Language:TypeScript 100.0%