Skip to content

Commit 41f823f

Browse files
committed
fix
1 parent 9d39e40 commit 41f823f

1 file changed

Lines changed: 15 additions & 1 deletion

File tree

docs/.vitepress/config.mts

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ const links: any = [];
1010
// https://vitepress.dev/reference/site-config
1111
export default defineConfig({
1212
title: "Robust Validator",
13-
description: "Another data validation library",
13+
description:
14+
"Rule-based data validation library in JavaScript. It's extendable, function-oriented, and i18n supported.",
1415
lang: "en-US",
1516
lastUpdated: false,
1617
appearance: "force-dark",
@@ -57,6 +58,19 @@ export default defineConfig({
5758
},
5859

5960
head: [
61+
["meta", { property: "og:url", content: "https://validator.axe-api.com" }],
62+
["meta", { property: "og:type", content: "website" }],
63+
["meta", { property: "og:title", content: "Robust Validator" }],
64+
[
65+
"meta",
66+
{
67+
property: "og:description",
68+
content:
69+
"Rule-based data validation library in JavaScript. It's extendable, function-oriented, and i18n supported.",
70+
},
71+
],
72+
["meta", { property: "og:image", content: "" }],
73+
6074
["link", { rel: "stylesheet", href: "/cookieconsent.css" }],
6175
["script", { defer: "", src: "/init.js" }],
6276
[

0 commit comments

Comments
 (0)