this repo has no description
0
fork

Configure Feed

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

definitely

alice 3701b9aa a23f6720

+19 -5
bun.lockb

This is a binary file and will not be displayed.

+5 -5
package.json
··· 3 3 "version": "0.1.0", 4 4 "private": true, 5 5 "scripts": { 6 - "dev": "next dev --turbo", 6 + "dev": "next dev --turbopack", 7 7 "build": "next build", 8 8 "start": "next start", 9 9 "lint": "next lint", ··· 18 18 "autoprefixer": "^10.4.20", 19 19 "bookmarkleter": "^1.1.0", 20 20 "eslint": "^9.13.0", 21 - "eslint-config-next": "15.0.0", 22 - "next": "15.0.0", 21 + "eslint-config-next": "15.0.2", 22 + "next": "15.0.2", 23 23 "patch-package": "^8.0.0", 24 24 "postcss": "^8.4.47", 25 25 "prism-react-renderer": "^2.4.0", 26 - "react": "19.0.0-rc-65a56d0e-20241020", 27 - "react-dom": "19.0.0-rc-65a56d0e-20241020", 26 + "react": "19.0.0-rc-02c0e824-20241028", 27 + "react-dom": "19.0.0-rc-02c0e824-20241028", 28 28 "tailwindcss": "^3.4.14", 29 29 "typescript": "^5.6.3" 30 30 },
+6
src/app/definitely/.well-known/atproto-did/route.ts
··· 1 + export async function GET(request: Request) { 2 + return new Response('did:plc:rthoqm6urcjhirils62bys6l', { 3 + status: 200, 4 + headers: { 'content-type': 'text/plain' }, 5 + }); 6 + }
+8
src/app/definitely/route.ts
··· 1 + export async function GET(request: Request) { 2 + return new Response(null, { 3 + status: 302, 4 + headers: { 5 + 'Location': 'https://bsky.app/profile/did:plc:rthoqm6urcjhirils62bys6l', 6 + }, 7 + }); 8 + }