portal_pns/.vitepress/config.js

47 lines
1.2 KiB
JavaScript
Raw Normal View History

2023-07-11 13:20:49 +07:00
import { defineConfig } from 'vitepress'
// https://vitepress.dev/reference/site-config
export default defineConfig({
title: "Portal Layanan PNS Kota Magelang",
description: "Website Portal Layanan PNS Kota Magelang",
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
2023-07-11 13:48:27 +07:00
search: {
provider: 'local'
},
logo: '/images/logo-magelang.png',
2023-07-11 13:20:49 +07:00
nav: [
{ text: 'Home', link: '/' },
{
text: 'Tutorial',
items: [
{
// Title for the section.
items: [
{ text: 'Roundcube webmail', link: '/roundcube/' },
{ text: 'SOGo', link: '/sogo/' },
{ text: 'IMAP (Smartphone)', link: '/imap/' },
{ text: 'K-9 Mail (Smartphone)', link: '/k-9/' }
]
}
]
},
{ text: 'Manual Book', link: '/manual-book' },
],
// sidebar: [
// {
// text: 'Examples',
// items: [
// { text: 'Markdown Examples', link: '/markdown-examples' },
// { text: 'Runtime API Examples', link: '/api-examples' }
// ]
// }
// ],
// socialLinks: [
// { icon: 'twitter', link: 'https://github.com/vuejs/vitepress' }
// ]
}
})