From 9d45cde0e630c2f97a0d8f7495d7e4664bbfa8f3 Mon Sep 17 00:00:00 2001 From: Ole Eskild Steensen Date: Mon, 22 May 2023 19:03:06 +0200 Subject: [PATCH] Use correct parameter for setting favicon outpu --- .eleventy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eleventy.js b/.eleventy.js index dcd9a6e..f45e932 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -433,7 +433,7 @@ module.exports = function (eleventyConfig) { eleventyConfig.addPassthroughCopy("src/site/img"); eleventyConfig.addPassthroughCopy("src/site/scripts"); eleventyConfig.addPassthroughCopy("src/site/styles/_theme.*.css"); - eleventyConfig.addPlugin(faviconsPlugin, { destination: "dist" }); + eleventyConfig.addPlugin(faviconsPlugin, { outputDir: "dist" }); eleventyConfig.addPlugin(tocPlugin, { ul: true, tags: ["h1", "h2", "h3", "h4", "h5", "h6"],