From 9427a9bf942f462b52b74fd9209b7dc2aa5f6265 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Fri, 15 Sep 2023 14:43:51 -0500 Subject: make eslint and prettier happy Signed-off-by: Matt Strapp --- app/src/hooks.server.ts | 54 ++++++++++++++++++++++++------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) (limited to 'app/src/hooks.server.ts') diff --git a/app/src/hooks.server.ts b/app/src/hooks.server.ts index aaf2757..bf7121a 100644 --- a/app/src/hooks.server.ts +++ b/app/src/hooks.server.ts @@ -2,35 +2,35 @@ import { minify } from 'html-minifier-terser'; import { building } from '$app/environment'; const minification_options = { - collapseBooleanAttributes: true, - collapseWhitespace: true, - conservativeCollapse: true, - decodeEntities: true, - html5: true, - ignoreCustomComments: [/^#/], - minifyCSS: true, - minifyJS: true, - minifyURLs: true, - removeAttributeQuotes: true, - removeComments: false, // some hydration code needs comments, so leave them in - removeOptionalTags: true, - removeRedundantAttributes: true, - removeScriptTypeAttributes: true, - removeStyleLinkTypeAttributes: true, - sortAttributes: true, - sortClassName: true + collapseBooleanAttributes: true, + collapseWhitespace: true, + conservativeCollapse: true, + decodeEntities: true, + html5: true, + ignoreCustomComments: [/^#/], + minifyCSS: true, + minifyJS: true, + minifyURLs: true, + removeAttributeQuotes: true, + removeComments: false, // some hydration code needs comments, so leave them in + removeOptionalTags: true, + removeRedundantAttributes: true, + removeScriptTypeAttributes: true, + removeStyleLinkTypeAttributes: true, + sortAttributes: true, + sortClassName: true }; /** @type {import('@sveltejs/kit').Handle} */ export async function handle({ event, resolve }) { - let page = ''; + let page = ''; - return resolve(event, { - transformPageChunk: ({ html, done }) => { - page += html; - if (done) { - return building ? minify(page, minification_options) : page; - } - } - }); -} \ No newline at end of file + return resolve(event, { + transformPageChunk: ({ html, done }) => { + page += html; + if (done) { + return building ? minify(page, minification_options) : page; + } + } + }); +} -- cgit v1.2.3