Fix lint errors and cleanup node_modules from git

This commit is contained in:
MivoDev
2026-01-18 11:21:31 +07:00
parent 266a4b1296
commit 9b71ee65ed
10681 changed files with 19 additions and 1469308 deletions

View File

@@ -1,4 +1,5 @@
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'
@@ -7,7 +8,7 @@ import './style.css'
export default {
extends: DefaultTheme,
Layout: Layout,
enhanceApp({ app }) {
enhanceApp({ app }: EnhanceAppContext) {
app.component('Icon', Icon)
}
}