Update TinaCMS, add options for list in CMS for posts

This commit is contained in:
Cassidy Williams
2024-03-30 01:35:09 -05:00
parent 3076ebb6e5
commit dd051e74dc
4 changed files with 669 additions and 762 deletions

View File

@@ -71,6 +71,40 @@ export default defineConfig({
name: "tags",
type: "string",
list: true,
options: [
{
value: "technical",
label: "Technical",
},
{
value: "advice",
label: "Advice",
},
{
value: "events",
label: "Events",
},
{
value: "learning",
label: "Learning",
},
{
value: "meta",
label: "Meta",
},
{
value: "work",
label: "Work",
},
{
value: "personal",
label: "Personal",
},
{
value: "musings",
label: "Musings",
},
],
},
{
label: "Added",

File diff suppressed because one or more lines are too long