feat: add option to remove continue reading

This commit is contained in:
2022-08-10 16:50:03 -04:00
parent ff1fc96a5c
commit e26ab7f284
8 changed files with 3 additions and 229 deletions

2
shared/types.d.ts vendored
View File

@@ -13,6 +13,7 @@ interface BlogParsedContent extends ParsedContent {
tags: string[];
description?: string;
readingTime: ReadingTime;
nopreview?: boolean;
}
interface StoryParsedContent extends ParsedContent {
@@ -21,4 +22,5 @@ interface StoryParsedContent extends ParsedContent {
tags: string[];
description?: string;
readingTime: ReadingTime;
nopreview?: boolean;
}