feat: 前端构建调整

This commit is contained in:
tbphp
2025-07-13 02:39:45 +08:00
parent af967cab2e
commit 7882b56694
2 changed files with 2 additions and 3 deletions

View File

@@ -28,9 +28,8 @@
"clean": "rm -rf dist node_modules/.vite",
"test:unit": "echo 'No tests specified' && exit 0",
"prepare": "echo 'Prepare script for potential Git hooks'",
"check-all": "pnpm lint:check && pnpm format:check && pnpm type-check"
"check-all": "npm lint:check && npm format:check && npm type-check"
},
"packageManager": "pnpm@8.15.0",
"dependencies": {
"@vicons/ionicons5": "^0.13.0",
"axios": "^1.9.0",

View File

@@ -1,7 +1,7 @@
import App from "@/App.vue";
import "@/assets/style.css";
import router from "@/router";
import naive from "naive-ui";
import { createApp } from "vue";
import "./assets/style.css";
createApp(App).use(router).use(naive).mount("#app");