chore: switch from vuepress to vitepress
deploy / deploy (push) Successful in 4m46s

This commit is contained in:
2026-07-11 11:41:14 +02:00
parent 3aa57fcdda
commit 53bd794a5c
99 changed files with 525 additions and 2910 deletions
+33
View File
@@ -0,0 +1,33 @@
// -*- mode: typescript; -*-
import { defineConfig, HeadConfig } from 'vitepress';
import appHead from './head';
import { sidebar } from './sidebar';
import { nav } from './nav';
export default defineConfig({
title: "Phundrak's Conlangs",
cleanUrls: true,
description: 'Documentation of the constructed languages made by Phundrak',
head: appHead as HeadConfig[],
srcDir: './docs',
themeConfig: {
sidebar,
nav,
outline: {
level: 'deep'
},
search: {
provider: 'local'
},
},
markdown: {
image: {
lazyLoading: true
},
linkify: true,
typographer: true,
headers: {
level: [1, 2, 3, 4, 5]
}
},
})