Skip to content
This repository was archived by the owner on Jul 10, 2024. It is now read-only.

Commit 0f45ac8

Browse files
committed
feat: minify html
1 parent 2f45359 commit 0f45ac8

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-0
lines changed

bun.lockb

4.2 KB
Binary file not shown.

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,14 @@
3939
"@sherifforg/types": "^3.0.0",
4040
"@types/bun": "^1.0.7",
4141
"@types/eslint": "^8.56.3",
42+
"@types/html-minifier-terser": "^7.0.2",
4243
"@vite-pwa/assets-generator": "^0.2.4",
4344
"browserslist": "^4.23.0",
4445
"browserslist-to-esbuild": "^2.1.1",
4546
"eslint": "^8.56.0",
4647
"eslint-config-sheriff": "^18.1.0",
4748
"eslint-define-config": "^2.1.0",
49+
"html-minifier-terser": "^7.2.0",
4850
"lightningcss": "^1.24.0",
4951
"prettier": "3.2.5",
5052
"turbo": "^1.12.4",

vite.config.ts

+23
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import browserslistToEsbuild from "browserslist-to-esbuild";
44
import { browserslistToTargets } from "lightningcss";
55
import { defineConfig } from "vite";
66
import { VitePWA } from "vite-plugin-pwa";
7+
import { minify } from "html-minifier-terser";
78

89
const browsersList = browserslist();
910
const basename = "/GPA_Calculator/";
@@ -29,6 +30,28 @@ export default defineConfig({
2930
},
3031
},
3132
plugins: [
33+
{
34+
name: "html-minify", // Name of the plugin
35+
transformIndexHtml: {
36+
order: "post",
37+
handler: async (html: string): Promise<string> =>
38+
minify(html, {
39+
removeAttributeQuotes: true,
40+
collapseWhitespace: true,
41+
removeComments: true,
42+
removeRedundantAttributes: true,
43+
useShortDoctype: true,
44+
removeEmptyAttributes: true,
45+
collapseBooleanAttributes: true,
46+
minifyURLs: true,
47+
collapseInlineTagWhitespace: true,
48+
decodeEntities: true,
49+
noNewlinesBeforeTagClose: true,
50+
removeStyleLinkTypeAttributes: true,
51+
removeScriptTypeAttributes: true,
52+
}),
53+
},
54+
},
3255
VitePWA({
3356
strategies: "injectManifest",
3457
injectManifest: {

0 commit comments

Comments
 (0)