From 4f617a6be7761bc207a6ad72250470015f372863 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joaqu=C3=ADn=20S=C3=A1nchez?= Date: Fri, 26 Jul 2024 16:27:21 +0200 Subject: [PATCH] chore: update `environment-react-ssr` build script vite build `-all` flag doesn't exist it should be `--app` --- playground/environment-react-ssr/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playground/environment-react-ssr/package.json b/playground/environment-react-ssr/package.json index 77228c8054c5c8..9aa44aa8a14a0a 100644 --- a/playground/environment-react-ssr/package.json +++ b/playground/environment-react-ssr/package.json @@ -5,7 +5,7 @@ "type": "module", "scripts": { "dev": "vite", - "build": "vite build --all", + "build": "vite build --app", "preview": "vite preview" }, "devDependencies": {