logo

nextjsでsitemapを準備する

nextjs

nextjsでsitemapを準備は以下のドキュメントを読めばすぐに実装ができます。card:https://nextjs.org/docs/app/api-reference/file-conventions/metadata/sitemapおすすめはtypescriptでの実装です。app/sitemap.tsimport type { MetadataRoute } from 'next'export default function sitemap(): MetadataRoute.Sitemap { return [ { url: 'https://acme.com

Date
Read morenextjsでsitemapを準備する

nextjsで画面遷移するたびに処理するようにする

nextjs

nextjs で画面遷移時に処理を入れたい場合があると思います。そのときに役に立つ自作hooksです。// hooks/usePageTransition.tsx"use client";import { useEffect, useState } from "react";import { usePathname, useSearchParams } from "next/navigation";const usePageTransition = () => { const pathname = usePathname(); const searchParams = useSearchP

Date
Read morenextjsで画面遷移するたびに処理するようにする