From be3fda2f534991aa630d77c405d339956c2c809d Mon Sep 17 00:00:00 2001 From: Corentin Flr <10946971+cogk@users.noreply.github.com> Date: Fri, 14 Jun 2024 12:07:46 +0200 Subject: [PATCH] chore(build): Make `vite build` less verbose --- desk/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desk/package.json b/desk/package.json index 046eeaa84..6d35f4a6f 100644 --- a/desk/package.json +++ b/desk/package.json @@ -5,7 +5,7 @@ "scripts": { "dev": "vite", "preview": "vite preview", - "build": "vite build --base=/assets/helpdesk/desk/ && yarn copy-html-entry", + "build": "vite build -l warn --base=/assets/helpdesk/desk/ && yarn copy-html-entry", "serve": "vite preview", "copy-html-entry": "cp ../helpdesk/public/desk/index.html ../helpdesk/www/helpdesk/index.html" },