aboutsummaryrefslogtreecommitdiff
path: root/eleventy.config.js
blob: 944556438ec883e0dfef69be2126133ec96f090e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import pluginSEO from "eleventy-plugin-seo";
import htmlmin from "html-minifier-terser";

export default function (eleventyConfig) {
  // Passthroughs
  eleventyConfig.addPassthroughCopy("./dist/");
  eleventyConfig.addPassthroughCopy("./assets/");

  // Plugins
  eleventyConfig.addPlugin(pluginSEO, {
    title: "Lisa McKinney",
    description: "Lisa is a London based prop and interior stylist",
    url: "https://lisa-mckinney.co.uk",
  });

  eleventyConfig.addTransform("htmlmin", function (content) {
    if ((this.page.outputPath || "").endsWith(".html")) {
      let minified = htmlmin.minify(content, {
        useShortDoctype: true,
        removeComments: true,
        collapseWhitespace: true,
      });

      return minified;
    }

    return content;
  });
}