Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
fastify
GitHub Repository: fastify/point-of-view
Path: blob/main/benchmark/fastify-ejs-minify.js
106 views
1
'use strict'
2
3
require('./setup.js')({
4
engine: { ejs: require('ejs') },
5
route: (_req, reply) => { reply.view('index.ejs', { text: 'text' }) },
6
options: {
7
useHtmlMinifier: require('html-minifier-terser'),
8
htmlMinifierOptions: {
9
removeComments: true,
10
removeCommentsFromCDATA: true,
11
collapseWhitespace: true,
12
collapseBooleanAttributes: true,
13
removeAttributeQuotes: true,
14
removeEmptyAttributes: true
15
}
16
}
17
})
18
19