From b7cd31587285bd82b4ee1e4db956e88760b9887e Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 8 Jan 2026 10:42:37 +0100 Subject: [PATCH] :bug: Fix wasm-playground on devenv --- docker/devenv/docker-compose.yaml | 3 +++ docker/devenv/files/nginx.conf | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/docker/devenv/docker-compose.yaml b/docker/devenv/docker-compose.yaml index 3ed5c3cdd7..3973eea3b4 100644 --- a/docker/devenv/docker-compose.yaml +++ b/docker/devenv/docker-compose.yaml @@ -41,7 +41,10 @@ services: - 6062:6062 - 6063:6063 - 6064:6064 + - 9000:9000 + - 9001:9001 - 9090:9090 + - 9091:9091 environment: - EXTERNAL_UID=${CURRENT_USER_ID} diff --git a/docker/devenv/files/nginx.conf b/docker/devenv/files/nginx.conf index d2573be684..f3a0023ceb 100644 --- a/docker/devenv/files/nginx.conf +++ b/docker/devenv/files/nginx.conf @@ -145,8 +145,8 @@ http { proxy_pass http://127.0.0.1:3000/; } - location /playground { - alias /home/penpot/penpot/experiments/; + location /wasm-playground { + alias /home/penpot/penpot/frontend/resources/public/wasm-playground/; add_header Cache-Control "no-cache, max-age=0"; autoindex on; }