This commit is contained in:
widgeter
2023-08-11 19:35:25 +02:00
2 changed files with 4 additions and 4 deletions

View File

@ -57,7 +57,7 @@
"openGraph": { "openGraph": {
"type": "object", "type": "object",
"properties": { "properties": {
"siteName": { "site_name": {
"type": "string" "type": "string"
}, },
"images": { "images": {
@ -84,7 +84,7 @@
"type": "string" "type": "string"
} }
}, },
"required": ["siteName", "images", "type"] "required": ["site_name", "images", "type"]
}, },
"twitter": { "twitter": {
"type": "object", "type": "object",
@ -240,7 +240,7 @@
"type": "object", "type": "object",
"properties": { "properties": {
"id": { "id": {
"type": "string" "type": ["string", "null"]
}, },
"partytown": { "partytown": {
"type": "boolean", "type": "boolean",

View File

@ -15,6 +15,6 @@
"editor.defaultFormatter": "esbenp.prettier-vscode" "editor.defaultFormatter": "esbenp.prettier-vscode"
}, },
"yaml.schemas": { "yaml.schemas": {
"./.vscode/astrowind/config-schema.json": "/src/config.yml" "./.vscode/astrowind/config-schema.json": "/src/config.yaml"
} }
} }