Files
hapi/docs/index.md
T
weishu 460c393006 docs: add documentation site with VitePress setup
- Initialize VitePress documentation site with config, index, and guides
- Add guides for quick-start, installation, PWA, how-it-works, FAQ, and why HAPI
- Update .gitignore to exclude VitePress cache directory
- Update logo.svg with actual icon from web/public/icon.svg
- Simplify README.md with link to full installation guide
- Remove redundant WHY_NOT_HAPPY.md (content migrated to why-hapi guide)
2025-12-31 20:41:02 +08:00

15 lines
228 B
Markdown

---
layout: home
title: HAPI Documentation
---
<script setup>
import { onMounted } from 'vue'
import { useRouter } from 'vitepress'
onMounted(() => {
const router = useRouter()
router.go('/guide/quick-start')
})
</script>