Fix deploy with modes

This commit is contained in:
Arthur Belleville 2025-10-23 14:14:02 +02:00
parent e6070faff3
commit d7e4bbc1a5
No known key found for this signature in database

View file

@ -13,8 +13,8 @@
"preview": "vite preview",
"build:staging": "tsc -b && vite build --mode staging",
"build:prod": "tsc -b && vite build --mode production",
"deploy:staging": "tsc -b && vite build --mode staging && wrangler deploy --env staging",
"deploy:prod": "tsc -b && vite build --mode production && wrangler deploy --env production",
"deploy:staging": "tsc -b && vite build --mode staging && wrangler deploy",
"deploy:prod": "tsc -b && vite build --mode production && wrangler deploy",
"cf-typegen": "wrangler types",
"test": "vitest run --mode dev --passWithNoTests",
"test:watch": "vitest watch --passWithNoTests",