Update docs structure to root and fix links

This commit is contained in:
MivoDev
2026-01-18 11:35:30 +07:00
parent c977c8dc1b
commit 2ef1f20e54
80 changed files with 227 additions and 188 deletions

14
.vitepress/theme/index.ts Normal file
View File

@@ -0,0 +1,14 @@
import DefaultTheme from 'vitepress/theme'
import type { EnhanceAppContext } from 'vitepress'
import Layout from './Layout.vue'
import Icon from './components/Icon.vue'
import 'flag-icons/css/flag-icons.min.css'
import './input.css'
export default {
extends: DefaultTheme,
Layout: Layout,
enhanceApp({ app }: EnhanceAppContext) {
app.component('Icon', Icon)
}
}