From 07ef2f90909f6453a35ff5b050a709909ef7be0b Mon Sep 17 00:00:00 2001 From: David Stotijn Date: Mon, 9 Nov 2020 21:06:40 +0100 Subject: [PATCH] Add OG meta tags --- docs/src/.vuepress/config.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/docs/src/.vuepress/config.js b/docs/src/.vuepress/config.js index eeee5aa..4ff0c71 100755 --- a/docs/src/.vuepress/config.js +++ b/docs/src/.vuepress/config.js @@ -11,6 +11,27 @@ module.exports = { "meta", { name: "apple-mobile-web-app-status-bar-style", content: "black" }, ], + [ + "meta", + { + property: "og:title", + content: "Hetty", + }, + ], + [ + "meta", + { + property: "og:description", + content: "An HTTP toolkit for security research.", + }, + ], + [ + "meta", + { + property: "og:image", + content: "https://hetty.xyz/assets/hetty_v0.2.0_header.png", + }, + ], ], themeConfig: { repo: "dstotijn/hetty",