Zenn
Open4

メモ

CUBE式ペンギンCUBE式ペンギン
Type error: Type 'xxxxxProps' does not satisfy the constraint 'PageProps'.

とかいうエラーが厄介すぎるのでめも

Nextは:"next": "^15.1.7",

CUBE式ペンギンCUBE式ペンギン
type xxxxxProps = {
  params: {
    id: string;
  };
};

export async function generateStaticParams() {
  const items = await fetchHogeItems();
  return items.map(item => ({
    id: item.id,
  }));
}

export default async function HogeHoge({ params }: xxxxxProps) {
ログインするとコメントできます