sst 3.0.1-19 → 3.0.1-20

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.
@@ -172,6 +172,9 @@ export function AuthHandler(input) {
172
172
  });
173
173
  app.route(`/${name}`, route);
174
174
  }
175
+ app.all("/*", async (c, next) => {
176
+ return c.notFound();
177
+ });
175
178
  console.log(app.routes);
176
179
  return app;
177
180
  }
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "name": "sst",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
- "version": "3.0.1-19",
6
+ "version": "3.0.1-20",
7
7
  "main": "./dist/index.js",
8
8
  "exports": {
9
9
  ".": "./dist/index.js",