Skip to content

Commit

Permalink
Meta tags, fix logo for upcoming update
Browse files Browse the repository at this point in the history
  • Loading branch information
thatkev committed Oct 13, 2023
1 parent 1d37d79 commit 01328d2
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions guide/.vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,23 @@ const replacePageContent = (content, replacements) => {
};
module.exports = {
lang: 'en-US',
title: 'Custom Command Bot',
description: 'The documentation of Custom Command bot',
title: 'Custom Command',
description: 'Custom Command Bot\'s Documentation',
theme: '@vuepress/default',
head: [['link', { rel: 'icon', href: '/favicon.ico' }]],
head: [
['link', { rel: 'icon', href: '/favicon.ico' }],
['meta', { name: 'theme-color', content: '#74b0f7' }],

['meta', { property: 'og:title', content: 'Custom Command Bot' }],
['meta', { property: 'og:description', content: 'Custom Command Bot\'s Documentation' }],
['meta', { property: 'og:image', content: 'https://doc.ccommandbot.com/favicon.ico' }],
['meta', { property: 'og:url', content: 'https://ccommandbot.com' }],


['meta', { name: 'twitter:title', content: 'Custom Command Bot' }],
['meta', { name: 'twitter:description', content: 'Custom Command Bot\'s Documentation' }],
['meta', { name: 'twitter:image', content: 'https://doc.ccommandbot.com/favicon.ico' }]
],
//plugins: ['@vuepress/plugin-container'],
plugins: [
(options, context) => ({
Expand Down Expand Up @@ -53,7 +66,7 @@ module.exports = {
repo: 'raspdevpy/ccdoc',
contributors:false,
search: true,
logo: 'https://cdn.discordapp.com/icons/832255686783533066/f7131f694c6e1a2bd9c360d8b525d4e3.webp',
logo: '/favicon.ico',
editLinks: true,
editLinkText: 'Improve This Page!',
lastUpdated: true,
Expand Down

0 comments on commit 01328d2

Please sign in to comment.