upgrade to astro 5

This commit is contained in:
2024-12-12 19:48:23 -05:00
parent 937b66e7c0
commit 3af9574c6d
11 changed files with 240 additions and 512 deletions
+32
View File
@@ -0,0 +1,32 @@
{
"$ref": "#/definitions/blog",
"definitions": {
"blog": {
"type": "object",
"properties": {
"title": {
"type": "string"
},
"pubDate": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"$schema": {
"type": "string"
}
},
"required": [
"title",
"pubDate",
"tags"
],
"additionalProperties": false
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}