chore: Updated dependencies

This commit is contained in:
Ilya Artamonov
2023-09-13 16:00:24 +03:00
parent 920157170b
commit c63fe34ab2
14 changed files with 3129 additions and 3170 deletions

View File

@@ -0,0 +1,14 @@
// https://vitepress.dev/guide/custom-theme
import { h } from 'vue'
import Theme from 'vitepress/theme'
import './tailwind.css'
import './clear.css'
export default {
extends: Theme,
Layout: () => {
return h(Theme.Layout, null, {
// https://vitepress.dev/guide/extending-default-theme#layout-slots
})
},
}