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 <noreply@anthropic.com>
This commit is contained in:
Justin 2026-08-31 14:26:21 -05:00
parent 9dd8fae16e
commit f8b0a8b070
1 changed files with 11 additions and 0 deletions

11
.claude/launch.json Normal file
View File

@ -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
}
]
}