Fix webfonts in feed styling

This commit is contained in:
N-Upchurch
2023-08-06 20:59:07 -05:00
parent 5c6495ae54
commit 928281c79b
5 changed files with 56 additions and 55 deletions

View File

@ -43,7 +43,7 @@ module.exports = function(eleventyConfig) {
eleventyConfig.addPassthroughCopy({ 'public/img/*': "/img/" });
// Copying so that basic.xsl can use it
eleventyConfig.addPassthroughCopy({ 'public/css/index.css': "/css/index.css" });
eleventyConfig.addPassthroughCopy({ 'public/css/webfonts/*': "/webfonts/" });
eleventyConfig.addPassthroughCopy({ 'public/css/webfonts/*': "/css/webfonts/" });
// Get the first `n` elements of a collection.
eleventyConfig.addFilter("head", (array, n) => {