提问人:Thor Christensen 提问时间:2/1/2023 更新时间:2/2/2023 访问量:208
缩小 HTML String React
Minifying HTML String React
问:
是否有任何库可以像 html-minifier 或 html-minifier-terser 服务器端一样缩小 HTML 字符串客户端?
我想缩小一个包含电子邮件 HTML 的字符串。服务器端工作正常,如下所示:
const result = minify(testString, {
collapseWhitespace: true,
conservativeCollapse: true,
trimCustomFragments: true,
removeRedundantAttributes: true,
removeEmptyAttributes: true,
removeComments: true,
minifyCSS: true,
minifyJS: true,
collapseBooleanAttributes: true,
});
通过使用 html-minifier-terser。在客户端的 React 中是否有类似的工作?
答: 暂无答案
评论