diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6b718463cf875a2249278984cfddd565489a308d..bebf46c36ef8311adb458708de46b755502cce61 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -72,7 +72,7 @@ deploy-netlify-preview:
   script:
     - cd frontends/web/dist
     - cp -rp ../static/* .
-    - npm_config_yes=true npx --package=netlify-cli netlify deploy --dir=.
+    - npm_config_yes=true npx --loglevel silly --package=netlify-cli netlify deploy --dir=.
   dependencies:
     - build-wasm
   only:
@@ -83,7 +83,7 @@ deploy-netlify-prod:
   script:
     - cd frontends/web/dist
     - cp -rp ../static/* .
-    - npm_config_yes=true npx --package=netlify-cli netlify deploy --dir=. --prod
+    - npm_config_yes=true npx --loglevel silly --package=netlify-cli netlify deploy --dir=. --prod
   dependencies:
     - build-wasm
   only:
@@ -94,7 +94,7 @@ deploy-cloudfare-master:
   script:
     - cd frontends/web/dist
     - cp -rp ../static/* .
-    - npm_config_yes=true npx wrangler pages deploy . --project-name=boytacean --branch master
+    - npm_config_yes=true npx --loglevel silly wrangler pages deploy . --project-name=boytacean --branch master
   dependencies:
     - build-wasm
   only:
@@ -105,7 +105,7 @@ deploy-cloudfare-stable:
   script:
     - cd frontends/web/dist
     - cp -rp ../static/* .
-    - npm_config_yes=true npx wrangler pages deploy . --project-name=boytacean --branch stable
+    - npm_config_yes=true npx --loglevel silly wrangler pages deploy . --project-name=boytacean --branch stable
   dependencies:
     - build-wasm
   only:
@@ -116,9 +116,9 @@ deploy-cloudfare-prod:
   script:
     - cd frontends/web/dist
     - cp -rp ../static/* .
-    - npm_config_yes=true npx wrangler pages deploy . --project-name=boytacean --branch prod
-    - npm_config_yes=true npx wrangler pages deploy . --project-name=boytacean --branch production
-    - npm_config_yes=true npx wrangler pages deploy . --project-name=boytacean --branch main
+    - npm_config_yes=true npx --loglevel silly wrangler pages deploy . --project-name=boytacean --branch prod
+    - npm_config_yes=true npx --loglevel silly wrangler pages deploy . --project-name=boytacean --branch production
+    - npm_config_yes=true npx --loglevel silly wrangler pages deploy . --project-name=boytacean --branch main
   dependencies:
     - build-wasm
   only: