Fix deploy with modes
This commit is contained in:
parent
e6070faff3
commit
d7e4bbc1a5
1 changed files with 2 additions and 2 deletions
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in a new issue