website/astro-integrations/minify/index.ts

32 lines
949 B
TypeScript
Raw Normal View History

import type { AstroIntegration } from "astro";
import { minify } from "html-minifier";
import { writeFile, readFile } from "node:fs/promises";
import { fileURLToPath } from "node:url";
export default (): AstroIntegration => {
2023-05-14 11:18:43 +02:00
return {
name: "hyro-minify",
hooks: {
"astro:build:done": async (opts) => {
for (const route of opts.routes) {
if (!route.distURL) continue;
const content = await readFile(fileURLToPath(route.distURL), "utf-8");
2023-05-14 11:18:43 +02:00
const minified = await minify(content, {
removeAttributeQuotes: true,
collapseWhitespace: true,
minifyCSS: true,
html5: true,
removeComments: true,
minifyJS: true,
minifyURLs: true,
});
2023-05-14 11:18:43 +02:00
await writeFile(fileURLToPath(route.distURL!), minified, "utf-8");
console.log(`Minified ${route.distURL!.pathname}`);
}
2023-05-14 11:18:43 +02:00
},
},
};
};