Javier Feliz 821e49288d
Some checks failed
linter / quality (push) Successful in 7m10s
tests / ci (push) Failing after 10m19s
Finally just moved the docs here
2025-08-04 19:12:42 -04:00

41 lines
981 B
JavaScript

import { defineConfig } from 'vitepress'
import tailwindcss from '@tailwindcss/vite'
// https://vitepress.dev/reference/site-config
export default defineConfig({
title: "AuthentiKate",
description: "The OIDC/SSO solution for homelabbers",
cleanUrls: true,
vite: {
plugins: [tailwindcss()]
},
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
nav: [
{ text: 'Home', link: '/' },
{ text: 'Quick Start', link: '/quick-start/' },
// { text: 'Documentation', link: '/docs' }
],
search: {
provider: 'local'
},
sidebar: {
'/quick-start/': [
{
text: 'Quick Start',
items: [
{ text: 'Docker Installation', link: '/quick-start/' },
{ text: 'Manual Deployment', link: '/quick-start/manual-deployment' }
]
}
]
},
socialLinks: [
{ icon: 'gitea', link: 'https://gitgud.foo/javif89/authentikate' }
]
}
})