diff --git a/config/collections/index.js b/config/collections/index.js index aaf61a41..d279d779 100644 --- a/config/collections/index.js +++ b/config/collections/index.js @@ -79,7 +79,7 @@ export const allContent = (collection) => { } if (item?.['link']) content['url'] = item?.['link'] if (item?.['slug']) content['url'] = new URL(item['slug'], BASE_URL).toString() - if (item?.['description']) content['description'] = `${item['description'].split(' ').slice(0, 150).join(' ')}...

` + if (item?.['description']) content['description'] = `${item['description'].split(' ').slice(0, 100).join(' ')}...

` const date = getDate ? parseDate(getDate(item)) : null if (date) content['date'] = date aggregateContent.push(content) diff --git a/package-lock.json b/package-lock.json index a8d599ab..f203ed27 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "19.2.5", + "version": "19.2.6", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "19.2.5", + "version": "19.2.6", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.4.0", diff --git a/package.json b/package.json index 692003c7..25a9c1d6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "19.2.5", + "version": "19.2.6", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": {