Swap tsc and vite build so I can pass params to vite build

This commit is contained in:
2025-09-24 18:00:04 -07:00
parent 625bc508aa
commit 8afe0a5345

View File

@@ -5,7 +5,7 @@
"scripts": {
"dev": "mprocs \"npm run start\" \"pocketbase serve\"",
"start": "VITE_POCKETBASE_URL=http://localhost:8090 vite --port 3000",
"build": "vite build && tsc",
"build": "tsc && vite build",
"serve": "vite preview",
"test": "vitest run",
"docker:build:app": "docker build -t docker.havenisms.com/lazy-dm/app -f docker/app.dockerfile --build-arg VITE_POCKETBASE_URL=/api .",