From b75b999903a51a453f475418591a0507336c6188 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 10 Dec 2025 08:22:05 +0100 Subject: [PATCH] :paperclip: Fix devenv jvm warning --- frontend/deps.edn | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frontend/deps.edn b/frontend/deps.edn index 3d4ff15c09..e023e302d8 100644 --- a/frontend/deps.edn +++ b/frontend/deps.edn @@ -50,5 +50,8 @@ :shadow-cljs {:main-opts ["-m" "shadow.cljs.devtools.cli"] - :jvm-opts ["--sun-misc-unsafe-memory-access=allow" "-Dpenpot.wasm.profile-marks=true"]} + :jvm-opts ["--sun-misc-unsafe-memory-access=allow" + "-Dpenpot.wasm.profile-marks=true" + "-XX:+UnlockExperimentalVMOptions" + "-XX:CompileCommand=blackhole,criterium.blackhole.Blackhole::consume"]} }}