Skip to content

Commit c898bdf

Browse files
committed
Add extra safe meta tags for SEO and mobile support
Signed-off-by: devlohani99 <[email protected]> Signed-off-by: devlo90 <[email protected]>
1 parent 2b066db commit c898bdf

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed

docusaurus.config.js

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,17 @@ module.exports = {
5252
"API testing, Keploy docs, incident replay, network calls, code paths, test scenarios, code coverage, stubs, junit, go-test, live environment, production incidents, open source, regression tests, ai tests",
5353
},
5454
{name: "twitter:card", content: "summary_large_image"},
55+
{name: "robots", content: "index, follow"},
56+
{name: "author", content: "Keploy Team"},
57+
{property: "og:type", content: "website"},
58+
{property: "og:site_name", content: "Keploy"},
59+
{name: "twitter:site", content: "@keployio"},
60+
{name: "twitter:creator", content: "@keployio"},
61+
{ name: "viewport", content: "width=device-width, initial-scale=1.0" },
62+
{ name: "referrer", content: "no-referrer-when-downgrade" },
63+
{ name: "HandheldFriendly", content: "True" },
64+
{ name: "mobile-web-app-capable", content: "yes" },
65+
{ name: "theme-color", content: "#ffffff" },
5566
],
5667
headTags: [
5768
// Preconnect tag
@@ -62,6 +73,52 @@ module.exports = {
6273
href: "https://keploy.io/",
6374
},
6475
},
76+
{
77+
tagName: "link",
78+
attributes: {
79+
rel: "preconnect",
80+
href: "https://www.google-analytics.com",
81+
},
82+
},
83+
{
84+
tagName: "link",
85+
attributes: {
86+
rel: "preconnect",
87+
href: "https://www.googletagmanager.com",
88+
},
89+
},
90+
{
91+
tagName: "meta",
92+
attributes: {
93+
name: "msapplication-config",
94+
content: "/docs/browserconfig.xml",
95+
},
96+
},
97+
{
98+
tagName: "script",
99+
attributes: {
100+
type: "application/ld+json",
101+
},
102+
innerHTML: JSON.stringify({
103+
"@context": "https://schema.org/",
104+
"@type": "Organization",
105+
name: "Keploy",
106+
url: "https://keploy.io",
107+
logo: "https://keploy.io/docs/img/favicon.png",
108+
description: "Open source tool that generates Regression Tests like unit tests with mocks and stubs from API calls.",
109+
sameAs: [
110+
"https://github.com/keploy/keploy",
111+
"https://twitter.com/keployio",
112+
"https://www.youtube.com/channel/UC6OTg7F4o0WkmNtSoob34lg",
113+
"https://join.slack.com/t/keploy/shared_invite/zt-357qqm9b5-PbZRVu3Yt2rJIa6ofrwWNg"
114+
],
115+
contactPoint: {
116+
"@type": "ContactPoint",
117+
contactType: "customer service",
118+
url: "https://keploy.io"
119+
}
120+
}),
121+
},
65122
{
66123
tagName: "script",
67124
attributes: {

0 commit comments

Comments
 (0)