From db3fef4809ae056768b11699643d01fc432e40d6 Mon Sep 17 00:00:00 2001 From: yuki Date: Fri, 10 Oct 2025 19:45:29 -0300 Subject: [PATCH] add fonts passthrough --- eleventy.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/eleventy.config.js b/eleventy.config.js index 8f08935..0f93e67 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -3,6 +3,7 @@ const eleventySass = require("eleventy-sass"); module.exports = function (eleventyConfig) { eleventyConfig.addPlugin(eleventySass); eleventyConfig.addPassthroughCopy("img"); + eleventyConfig.addPassthroughCopy("css/fonts"); return { markdownTemplateEngine: "njk",