Inizializzato Vitepress

This commit is contained in:
Malasaur 2025-09-14 09:44:03 +02:00
commit 60bcd8950b
9 changed files with 2616 additions and 0 deletions

30
.vitepress/config.mts Normal file
View file

@ -0,0 +1,30 @@
import { defineConfig } from 'vitepress'
// https://vitepress.dev/reference/site-config
export default defineConfig({
srcDir: "site",
title: "Retards Server",
description: "New Beginning",
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
nav: [
{ text: 'Home', link: '/' },
{ text: 'Examples', link: '/markdown-examples' }
],
sidebar: [
{
text: 'Examples',
items: [
{ text: 'Markdown Examples', link: '/markdown-examples' },
{ text: 'Runtime API Examples', link: '/api-examples' }
]
}
],
socialLinks: [
{ icon: 'github', link: 'https://github.com/vuejs/vitepress' }
]
}
})