From 467a22ea0d2ad39f971e9c0ac2980b4734262850 Mon Sep 17 00:00:00 2001 From: Brian Muenzenmeyer Date: Wed, 1 Feb 2023 00:49:40 -0600 Subject: [PATCH] fix(plugin): improve resolution default --- .eleventy.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.eleventy.js b/.eleventy.js index 30c0ba4..9929431 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -2,10 +2,10 @@ const SERVICE_BASE = `https://t1.gstatic.com/faviconV2?client=SOCIAL&type=FAVICO module.exports = (eleventyConfig, options) => { const defaults = { - size: "1", + size: 128, } - eleventyConfig.addPairedShortcode("ai", function (content, href, size = 1) { + eleventyConfig.addPairedShortcode("ai", function (content, href, size = 128) { return `${content}` })