mirror of
https://github.com/wu736139669/hapi.git
synced 2026-08-05 06:24:37 +00:00
- 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)
15 lines
228 B
Markdown
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>
|