this repo has no description
0
fork

Configure Feed

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

next 15 rc2

alice 27e7560c 5d97695e

+15 -9
bun.lockb

This is a binary file and will not be displayed.

+11 -6
package.json
··· 12 12 "dependencies": { 13 13 "@babel/preset-typescript": "^7.25.7", 14 14 "@types/node": "^22.7.4", 15 - "@types/react": "^18.3.11", 16 - "@types/react-dom": "^18.3.0", 15 + "@types/react": "npm:types-react@19.0.0-rc.1", 16 + "@types/react-dom": "npm:types-react-dom@19.0.0-rc.1", 17 + "@vercel/functions": "^1.4.2", 17 18 "autoprefixer": "^10.4.20", 18 19 "bookmarkleter": "^1.1.0", 19 20 "eslint": "^9.12.0", 20 21 "eslint-config-next": "^14.2.14", 21 - "next": "^14.2.14", 22 + "next": "15.0.0-rc.1", 22 23 "patch-package": "^8.0.0", 23 24 "postcss": "^8.4.47", 24 25 "prism-react-renderer": "^2.4.0", 25 - "react": "^18.3.1", 26 - "react-dom": "^18.3.1", 26 + "react": "19.0.0-rc-cd22717c-20241013", 27 + "react-dom": "19.0.0-rc-cd22717c-20241013", 27 28 "tailwindcss": "^3.4.13", 28 29 "typescript": "^5.6.2" 30 + }, 31 + "overrides": { 32 + "@types/react": "npm:types-react@19.0.0-rc.1", 33 + "@types/react-dom": "npm:types-react-dom@19.0.0-rc.1" 29 34 } 30 - } 35 + }
+2 -1
src/app/[name]/page.tsx
··· 46 46 // }; 47 47 // } 48 48 49 - export default function Page({ params }: { params: person }) { 49 + export default async function Page(props: { params: Promise<person> }) { 50 + const params = await props.params; 50 51 return ( 51 52 <> 52 53 <div>{params.name} does not exist</div>
+2 -2
src/app/page.tsx
··· 8 8 }; 9 9 10 10 export default async function Page() { 11 - const host = headers().get('host'); 12 - const protocol = headers().get('x-forwarded-proto'); 11 + const host = (await headers()).get('host'); 12 + const protocol = (await headers()).get('x-forwarded-proto'); 13 13 return ( 14 14 <> 15 15 <div className="main">