AppView in a box as a Vite plugin thing hatk.dev
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: narrow .well-known route matching to specific OAuth paths

Previously hatk intercepted all /.well-known/ routes, causing non-OAuth
paths like apple-app-site-association to 404. Now only the two OAuth
well-known routes are intercepted, letting others fall through to the
framework handler.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

+3 -2
+1 -1
packages/hatk/package.json
··· 1 1 { 2 2 "name": "@hatk/hatk", 3 - "version": "0.0.1-alpha.51", 3 + "version": "0.0.1-alpha.52", 4 4 "license": "MIT", 5 5 "bin": { 6 6 "hatk": "dist/cli.js"
+2 -1
packages/hatk/src/adapter.ts
··· 64 64 '/xrpc/', 65 65 '/oauth/', 66 66 '/oauth-client-metadata.json', 67 - '/.well-known/', 67 + '/.well-known/oauth-authorization-server', 68 + '/.well-known/oauth-protected-resource', 68 69 '/og/', 69 70 '/admin', 70 71 '/repos',