From 6cea0312d23f660964b44ad3b2a6f18619d0b10b Mon Sep 17 00:00:00 2001 From: Justin Date: Mon, 31 Aug 2026 14:14:15 -0500 Subject: [PATCH] Add local static-server launch config for browser preview Lets the site be served on localhost for testing (e.g. verifying font/CSP fixes) without needing a separate dev setup. 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..eb61e05 --- /dev/null +++ b/.claude/launch.json @@ -0,0 +1,11 @@ +{ + "version": "0.0.1", + "configurations": [ + { + "name": "static-site", + "runtimeExecutable": "python", + "runtimeArgs": ["-m", "http.server", "8123"], + "port": 8123 + } + ] +}