generated from thegrind/laravel-dockerized
41 lines
981 B
JavaScript
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' }
|
|
]
|
|
}
|
|
})
|