// .eleventy.js
const { DateTime } = require("luxon");
+const eleventyLucideIcons = require("@grimlink/eleventy-plugin-lucide-icons");
const DEFAULT_LOCALE = "en-GB"; // English month names with day comes first
const DEFAULT_DISPLAY = "DATE_FULL"; // 11 September 2025
.toLocaleString(DateTime[DEFAULT_DISPLAY]);
});
+ // Lucide icons plugin
+ eleventyConfig.addPlugin(eleventyLucideIcons, {
+ size: 24,
+ strokeWidth: 2,
+ class: "icon",
+ });
+
return {
dir: { input: "site", includes: "_includes", data: "_data", output: "dist" },
htmlTemplateEngine: "njk",
markdownTemplateEngine: "njk",
};
};
+
+