From 51840ab476d66c68b27b0bc2dc2461ce9c062358 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eduardo=20Gonza=CC=81lez?= Date: Mon, 20 Apr 2026 12:29:19 +0200 Subject: [PATCH] chore: add dev server launch configuration Adds .claude/launch.json with Storybook (port 6006) and Playroom (port 9000) configurations for use with Claude Code's preview_start tool. Co-Authored-By: Claude Opus 4.7 (1M context) --- .claude/launch.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .claude/launch.json diff --git a/.claude/launch.json b/.claude/launch.json new file mode 100644 index 0000000000..b8500e7f63 --- /dev/null +++ b/.claude/launch.json @@ -0,0 +1,17 @@ +{ + "version": "0.0.1", + "configurations": [ + { + "name": "Storybook", + "runtimeExecutable": "yarn", + "runtimeArgs": ["storybook"], + "port": 6006 + }, + { + "name": "Playroom", + "runtimeExecutable": "yarn", + "runtimeArgs": ["playroom"], + "port": 9000 + } + ] +}