From 7882b56694caffc2af27bf6b08818fb9104555ba Mon Sep 17 00:00:00 2001 From: tbphp Date: Sun, 13 Jul 2025 02:39:45 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=89=8D=E7=AB=AF=E6=9E=84=E5=BB=BA?= =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/package.json | 3 +-- web/src/main.ts | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/web/package.json b/web/package.json index 75ffcce..ca71f75 100644 --- a/web/package.json +++ b/web/package.json @@ -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", diff --git a/web/src/main.ts b/web/src/main.ts index 9a8d434..981d576 100644 --- a/web/src/main.ts +++ b/web/src/main.ts @@ -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");