0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Laravel・Inertia・Reactで作ったページにmetaタグをいれる

Posted at

はじめに

こんにちは、エンジニアのkeitaMaxです。

今回はLaravel11とInertia.js・Reacrを使用して作成したページにmetaタグをつけたいと思います。

app.tsx

app.tsxのtitleを以下のようにします。(インストールした時に自動で入っているかもしれません)

app.tsx
const appName = import.meta.env.VITE_APP_NAME || 'application'
createInertiaApp({
    title: (title) => `${title} | ${appName}`,

.envファイルにVITE_APP_NAMEが設定されていればその名前がappNameに入ります。

titleはこの後記述しますが、各ページで設定したtitleが入ります。

各ページ

例えばTopページがあったとして以下のようにHeadを入力します。

top.tsx
export const Top = React.memo(function Top() {
    return (
       <Head>
         <title>TOP</title>
          <meta name="description" content="TOPページです" />
       </Head>
    )
})

こうするとapp.tsxのtitleにTOPが入ります。

実際にどうついているのか

この状態でbuildしてどのようになるのかみてみます。

.envのVITE_APP_NAMEにはtest-appを入れます。

スクリーンショット 2025-03-29 10.11.39.png
スクリーンショット 2025-03-29 10.13.00.png

すると上の画像のように
descriptionには「TOPページです」
titleには「TOP | test-app」
と入ります

おわりに

この記事での質問や、間違っている、もっといい方法があるといったご意見などありましたらご指摘していただけると幸いです。

最後まで読んでいただきありがとうございました!

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?