From d1d30e7eb55cd026ae07aaa370c4155ea8266d8d Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Mon, 24 Mar 2025 10:48:22 +0100 Subject: [PATCH] Revert ":paperclip: Add workaround for wasm production build failure" This reverts commit f8a2291a55c42aea5b694c14ecaf4e415e86a056. --- frontend/scripts/build | 7 ------- 1 file changed, 7 deletions(-) diff --git a/frontend/scripts/build b/frontend/scripts/build index 2b0cdbd96d..b298015456 100755 --- a/frontend/scripts/build +++ b/frontend/scripts/build @@ -24,14 +24,7 @@ rm -rf resources/public; rm -rf target/dist; yarn run build:app:main --config-merge "{:release-version \"${CURRENT_HASH}-${TS}\"}" $EXTRA_PARAMS || exit 1 - - -## WORKAROUND: tile rendering breaks the production build -export NODE_ENV=develop; yarn run build:wasm || exit 1; - -export NODE_ENV=production; - yarn run build:app:libs || exit 1; yarn run build:app:assets || exit 1;