Skip to content

Commit 20bfac6

Browse files
authored
chore: add Claude Preview launch.json for dev servers (#7056)
Configure Hugo dev server (port 1313) and test server (port 1315) for Claude Preview integration.
1 parent 2d4c385 commit 20bfac6

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.claude/launch.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"version": "0.0.1",
3+
"configurations": [
4+
{
5+
"name": "docs-dev",
6+
"runtimeExecutable": "npx",
7+
"runtimeArgs": ["hugo", "server"],
8+
"port": 1313
9+
},
10+
{
11+
"name": "docs-test",
12+
"runtimeExecutable": "npx",
13+
"runtimeArgs": ["hugo", "server", "--environment", "testing", "--port", "1315", "--noHTTPCache"],
14+
"port": 1315
15+
}
16+
]
17+
}

0 commit comments

Comments
 (0)