claude-queue 1.0.3 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1274,7 +1274,7 @@ function createServer(port = 3333) {
1274
1274
  const uiPath = uiPaths.find((p) => existsSync4(join5(p, "index.html")));
1275
1275
  if (uiPath) {
1276
1276
  app.use(express.static(uiPath));
1277
- app.get("*", (_req, res) => {
1277
+ app.get("/{*splat}", (_req, res) => {
1278
1278
  res.sendFile(join5(uiPath, "index.html"));
1279
1279
  });
1280
1280
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-queue",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "A local kanban board for managing Claude Code projects",
5
5
  "type": "module",
6
6
  "bin": {