Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 781 Bytes

README.md

File metadata and controls

38 lines (26 loc) · 781 Bytes

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 })],
})