Merge pull request #90 from Integral-Tech/npm-to-pnpm

fix: replace npm with pnpm in tauri build commands
This commit is contained in:
VirtualHotBar
2025-03-03 19:17:51 +08:00
committed by GitHub

View File

@@ -1,7 +1,7 @@
{
"build": {
"beforeBuildCommand": "npm run build",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "pnpm run build",
"beforeDevCommand": "pnpm run dev",
"frontendDist": "../dist",
"devUrl": "http://localhost:5173"
},