Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vite-plugin-pages-sitemap

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vite-plugin-pages-sitemap

vite-plugin-pages based sitemap generator

  • 1.7.1
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
1.1K
decreased by-17.72%
Maintainers
1
Weekly downloads
 
Created
Source

vite-plugin-pages-sitemap

npm version monthly downloads types license

vite-plugin-pages based sitemap generator

🚨Important Notes🚨

You must use vite-plugin-pages routes generation to use this plugin. If you are not working with vite-plugin-pages, i recommend to use vite-plugin-sitemap.

Getting Started

Vue

Install:

npm install -D vite-plugin-pages
npm install -D vite-plugin-pages-sitemap
npm install vue-router@next

Vite config

Add to your vite.config.js:

import Pages from 'vite-plugin-pages'
import generateSitemap from 'vite-plugin-pages-sitemap'

export default {
  plugins: [
    // ...
    Pages({
      onRoutesGenerated: routes => (generateSitemap({ routes })),
    }),
  ],
}

Dynamic routes

To generate dynamic routes, you can add them manually:

export default {
  plugins: [
    // ...
    Pages({
      onRoutesGenerated: async (routes) => {
        const users = await api.get('/users')
        const dynamicRoutes = users.map(user => `/users/${user.name}`)
        generateSitemap({ routes: [...routes, ...dynamicRoutes] })
      },
    }),
  ],
}

You can find a working example in example folder.

i18n

  • Type: { defaultLanguage?: string, languages: string[] }
  • Default: undefined

Add i18n support defining alternate links. defaultLanguage will use this language with / and languages with /language

hostname

  • Type: string
  • Default: 'http://localhost/'

Base URI.

routes

  • Type: Route[] or/and string[]
  • Default: []

Generated routes from vite-plugin-pages or/and strings as paths (ex: ['/user/1', '/user/2']) for manual dynamic routes.

exclude

  • Type: string[]
  • Default: []

Excluded routes for sitemap.

filename

  • Type: string
  • Default: 'sitemap'

File name.

dest

  • Type: string
  • Default: 'public'

Destination path.

changefreq

  • Type: string
  • Default: 'daily'

Change frequency option for sitemap.

priority

  • Type: number
  • Default: 1

Priority option for sitemap.

lastmod

  • Type: Date
  • Default: new Date()

Last modification option for sitemap.

readable

  • Type: boolean
  • Default: false

Converts XML into a human readable format

nuxtStyle

  • Type: boolean
  • Default: false

Is Nuxt.js style route naming.

allowRobots

  • Type: boolean
  • Default: true

Allow robots crawl (in robots.txt file).

License

MIT License © 2022 jbaubree

FAQs

Package last updated on 25 May 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc