Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,19 @@ export default defineConfig({
'/docs/': sideNavDocs(),
},

editLink: {
pattern: 'https://github.com/nxext/nx-extensions/tree/main/docs/:path',
text: 'Edit this page on GitHub',
},

socialLinks: [
{
icon: 'discord',
link: 'https://discord.gg/SWyp4xfGjn',
},
{ icon: 'github', link: 'https://github.com/nxext/nx-extensions' },
],

footer: {
message:
'MIT Licensed | Copyright © 2020-present Nxext Developers & Contributors',
Expand All @@ -29,19 +42,6 @@ function nav() {
return [
{ text: 'Guide', link: '/guide/' },
{ text: 'Docs', link: '/docs/nxext/overview' },
{
text: 'Links',
items: [
{
text: 'Nx Discord Chat',
link: 'https://discord.gg/SWyp4xfGjn',
},
{
text: 'Github',
link: 'https://github.com/nxext/nx-extensions',
},
],
},
];
}

Expand Down