This commit is contained in:
@val314159 2023-12-05 18:48:08 +00:00
parent 58bad186dc
commit 67112d15d5
3 changed files with 10052 additions and 4 deletions

View File

@ -1,7 +1,11 @@
<script setup lang="ts">
import { useMagicKeys, useToggle } from '@vueuse/core'
import { onMounted, ref, watch } from 'vue'
import { Content, useData, useRoute, useRouter } from 'vitepress'
//import { Content, useData, useRoute, useRouter } from 'vitepress'
import { useData, useRoute, useRouter } from 'vitepress'
//import { Content } from '../../../node_modules/vitepress/dist/client/app/components/Content'
import { Content } from 'vitepress/dist/client/app/components/Content'
import { SearchIcon } from 'lucide-vue-next'
import { type NavItem, docsConfig } from '../config/docs'
import Logo from '../components/Logo.vue'

10041
apps/www/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -6,9 +6,12 @@
"dist"
],
"scripts": {
"dev": "vitepress dev",
"dev": "vitepress dev --host 0.0.0.0 --port 1234",
"build": "vitepress build",
"preview": "vitepress preview",
"build2": "if [ ! -e node_modules ]; then (npm i && vitepress build); fi",
"preview": "vitepress preview --host 0.0.0.0 --port 1234",
"serve": "python3 -m http.server -b0 -d.vitepress/dist 1234",
"start": "npm run build2 && npm run serve",
"typecheck": "vue-tsc --noEmit",
"typecheck:registry": "vue-tsc --noEmit -p tsconfig.registry.json",
"build:registry": "pnpm typecheck:registry && tsx ./scripts/build-registry.ts"
@ -19,7 +22,7 @@
"@radix-icons/vue": "^1.0.0",
"@stackblitz/sdk": "^1.9.0",
"@tanstack/vue-table": "^8.10.7",
"@unovis/ts": "^1.2.3",
"@unovis/ts": "^1.2.1",
"@unovis/vue": "1.3.0-beta.3",
"@vee-validate/zod": "^4.11.8",
"@vueuse/core": "^10.5.0",