feat: add custom fonts

This commit is contained in:
Devin Haska 2024-01-30 18:11:16 -08:00
parent a5526174ba
commit be3e4272c5
14 changed files with 146 additions and 0 deletions

View file

@ -6,6 +6,11 @@ module.exports = (eleventyConfig) => {
require("./config/template-languages/css-config.js"),
);
// --------------------- Passthrough File Copy -----------------------
["src/assets/fonts/"].forEach((path) =>
eleventyConfig.addPassthroughCopy(path),
);
return {
// Optional (default is set): If your site deploys to a subdirectory, change `pathPrefix`, for example with with GitHub pages
pathPrefix: "/",