diff --git a/eleventy.config.js b/eleventy.config.js index 123fc92..86d68f2 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -27,7 +27,7 @@ export default async function(eleventyConfig) { // Transforms eleventyConfig.addTransform("prettier", function (content, outputPath) { if (outputPath && outputPath.endsWith(".html")) { - return prettier.format(content, {parser: "html", bracketSameLine: true, vueIndentScriptAndStyle: true, singleAttributePerLine: true, htmlWhitespaceSensitivity: "ignore"}); + return prettier.format(content, {parser: "html", bracketSameLine: true, vueIndentScriptAndStyle: true, singleAttributePerLine: true, htmlWhitespaceSensitivity: "css"}); } else { return content; }