From b4c143fbb297c38c57032af1875afdf9b8f66747 Mon Sep 17 00:00:00 2001 From: Olga Lavrukhina Date: Mon, 22 Jul 2024 09:53:57 +0300 Subject: [PATCH] fix "start": "npm run build && vite preview --port 3000" (add preview) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7f8b10ebc..73c7abc8d 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "main": "index.html", "scripts": { "dev": "vite --port 3000", - "start": "npm run build && vite --port 3000", + "start": "npm run build && vite preview --port 3000", "build": "vite build", "preview": "vite preview", "tscb": "tsc --build"