Skip to content

Commit

Permalink
refactor(SEO): Added website structured json data for SEO
Browse files Browse the repository at this point in the history
  • Loading branch information
benaclejames committed Aug 27, 2023
1 parent f7bd14a commit f5e8495
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,21 @@ const config = {
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
headTags: [
{
tagName: 'script',
attributes: {
type: 'application/ld+json',
},
innerHTML: JSON.stringify({
'@context': 'https://schema.org/',
'@type': 'CreativeWork',
name: 'VRCFaceTracking Docs',
url: 'https://docs.vrcft.io/',
logo: 'https://docs.vrcft.io/img/logo.svg',
}),
},
],
colorMode: {
defaultMode: 'dark',
respectPrefersColorScheme: true,
Expand Down

0 comments on commit f5e8495

Please sign in to comment.