feat: resolve timing with producing follow feed

This commit is contained in:
Cory Dransfeldt 2024-05-17 11:59:00 -07:00
parent ca31cd4f0e
commit c37fc2f1a3
No known key found for this signature in database
10 changed files with 133 additions and 193 deletions

View file

@ -9,7 +9,7 @@ import htmlmin from 'html-minifier-terser'
import filters from './config/filters/index.js'
import { minifyJsComponents } from './config/events/index.js'
import { searchIndex, tagList, tagsSortedByCount, links, tagMap, booksToRead } from './config/collections/index.js'
import { followContent, searchIndex, tagList, tagsSortedByCount, links, tagMap, booksToRead } from './config/collections/index.js'
import { DateTime } from 'luxon'
// load .env
@ -74,6 +74,7 @@ export default async function (eleventyConfig) {
})
// collections
eleventyConfig.addCollection('followContent', followContent)
eleventyConfig.addCollection('searchIndex', searchIndex)
eleventyConfig.addCollection('tagList', tagList)
eleventyConfig.addCollection('tagsSortedByCount', tagsSortedByCount)