Fix: Use npm install instead of npm ci

This commit is contained in:
2026-03-30 21:13:00 +00:00
parent b256da019b
commit 229db7951d

View File

@@ -10,7 +10,8 @@
"dev": "concurrently \"vite\" \"tsx watch src/server/index.ts\"",
"build:client": "vite build",
"build:server": "tsc -p tsconfig.server.json",
"build": "npm run build:client && npm run build:server",
"prebuild": "npm install",
"build": "npm run build:client && npm run build:server",
"lint": "eslint .",
"preview": "vite preview",
"start": "node dist/server/index.js"