Skip to content

Commit

Permalink
Add a Twitter link
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinchalet committed Jul 16, 2024
1 parent 1a8b823 commit 071436d
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions .vitepress/config.mts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { defineConfig } from 'vitepress'
import { defineConfig } from "vitepress"

// https://vitepress.dev/reference/site-config
export default defineConfig({
Expand All @@ -7,26 +7,27 @@ export default defineConfig({
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
nav: [
{ text: 'Home', link: '/' },
{ text: 'Documentation', link: 'https://documentation.openiddict.com/' },
{ text: 'Samples', link: 'https://github.com/openiddict/openiddict-samples' },
{ text: 'Changelog', link: 'https://github.com/openiddict/openiddict-core/releases' }
{ text: "Home", link: "/" },
{ text: "Documentation", link: "https://documentation.openiddict.com/" },
{ text: "Samples", link: "https://github.com/openiddict/openiddict-samples" },
{ text: "Changelog", link: "https://github.com/openiddict/openiddict-core/releases" }
],

socialLinks: [
{ icon: 'github', link: 'https://github.com/openiddict/openiddict-core' }
{ icon: "github", link: "https://github.com/openiddict/openiddict-core" },
{ icon: "twitter", link: "https://x.com/openiddict" }
],

externalLinkIcon: true,
logo: '/logo.png',
logo: "/logo.png",

editLink: {
pattern: 'https://github.com/openiddict/openiddict-website/edit/dev/:path',
text: 'Edit this page on GitHub'
pattern: "https://github.com/openiddict/openiddict-website/edit/dev/:path",
text: "Edit this page on GitHub"
},

footer: {
message: 'Proudly powered by VitePress.'
message: "Proudly powered by VitePress."
}
}
})

0 comments on commit 071436d

Please sign in to comment.