From d7e4bbc1a517766fcec1d872984a289b7423453b Mon Sep 17 00:00:00 2001 From: Arthur Belleville Date: Thu, 23 Oct 2025 14:14:02 +0200 Subject: [PATCH] Fix deploy with modes --- apps/main/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/main/package.json b/apps/main/package.json index c9b6497..fdded12 100644 --- a/apps/main/package.json +++ b/apps/main/package.json @@ -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",