- Published on
Next.jsにsitemapを導入する方法
Next.jsにsitemapを導入の3ステップ
Next.jsにsitemapを導入するのはとても簡単で3ステップだけになります。
next-sitemap
のインストール
yarn add next-sitemap -D
next-sitemap.js
ファイルの作成
next-sitemap.js
というファイルを作り、下記のようにURLやその他optionsを指定します。
module.exports = { siteUrl: 'https://example.com', generateRobotsTxt: true, // (optional) }
package.jsonの設定
あとは、package.jsonにnext-sitemap
を下記のように加えてあげれば、yarn run sitemap
でsitemapを作成するようになります。
"scripts": { "sitemap": "next-sitemap" }