fix(servertools): Normalize Express wildcard parameter notation to /{*splat} across server routes and handlers; add local Claude settings

This commit is contained in:
2025-09-03 14:54:15 +00:00
parent 43d8aea4e1
commit b1d376207a
7 changed files with 15 additions and 6 deletions

View File

@@ -132,7 +132,7 @@ export class Server {
});
this.expressAppInstance.use(cors);
this.expressAppInstance.options('/*splat', cors);
this.expressAppInstance.options('/{*splat}', cors);
}
this.expressAppInstance.use((req, res, next) => {