WhatsApp chat

Agregar sitemap a NextJS

Marlon Falcon Hernandez, nextjs
Back

Es muy importante para los buscadores como Google, Bing, etc. tener un sitemap de nuestra página web, es muy útil para que los buscadores puedan indexar nuestra página web, es muy útil para que los buscadores puedan encontrar nuestra página web, es muy útil para que los buscadores puedan rastrear nuestra página web, etc.

Instalación de la librería

npm i next-sitemap -D

Creamos el fichero next-sitemap.config.js En el fichero next-sitemap.config.js agregamos el siguiente código:

/** @type {import('next-sitemap').IConfig} */
// Default code you can customize according to your requirements.
module.exports = {
    siteUrl: process.env.SITE_URL || 'https://tusitio.com',
    generateRobotsTxt: true, // (optional)
    // REST CODE READ DOCS  ...
    }

Configuramos el fichero next.config.js En el fichero next.config.js agregamos el siguiente código:

"scripts": {
    "dev": "next dev",
    "build": "next build",
    "start": "next start",
    "lint": "next lint",
    "postbuild": "next-sitemap"
},

Si lo quieres probar local puedes ejecutar el siguiente comando:

npm run build


mfalconsoft@gmail.com / +34 (662) 47 0645RSS