From f8b0a8b070ce6f66cc8df41561c6f12f623b7693 Mon Sep 17 00:00:00 2001 From: Justin Date: Mon, 31 Aug 2026 14:26:21 -0500 Subject: [PATCH] Add local static-server launch config for browser preview Lets the Browser pane preview the site locally (python -m http.server) without needing a full deploy to check CSP/console behavior. Co-Authored-By: Claude Sonnet 5 --- .claude/launch.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .claude/launch.json diff --git a/.claude/launch.json b/.claude/launch.json new file mode 100644 index 0000000..8373b94 --- /dev/null +++ b/.claude/launch.json @@ -0,0 +1,11 @@ +{ + "version": "0.0.1", + "configurations": [ + { + "name": "static-site", + "runtimeExecutable": "C:\\Users\\justi\\AppData\\Local\\Programs\\Python\\Python312\\python.exe", + "runtimeArgs": ["-m", "http.server", "8123"], + "port": 8123 + } + ] +}