heyio 0.1.28 → 0.1.29

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.
@@ -127,7 +127,7 @@ export async function startApiServer() {
127
127
  if (existsSync(WEB_DIST)) {
128
128
  app.use(express.static(WEB_DIST));
129
129
  // SPA fallback — serve index.html for any non-API route
130
- app.get("*", (_req, res) => {
130
+ app.get("/{*splat}", (_req, res) => {
131
131
  res.sendFile(path.join(WEB_DIST, "index.html"));
132
132
  });
133
133
  console.log("[io] Web frontend enabled");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "heyio",
3
- "version": "0.1.28",
3
+ "version": "0.1.29",
4
4
  "description": "IO — a personal AI assistant built on the GitHub Copilot SDK",
5
5
  "bin": {
6
6
  "io": "dist/index.js"