Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
vite-plugin-sitemap
Advanced tools
Sitemap generator plugin for Vite using sitemap-ts.
This plugin scans your dist folder next build to generate sitemap.xml and robots.txt files.
Install:
npm install -D vite-plugin-sitemap
Add to your vite.config.js
:
import Sitemap from 'vite-plugin-sitemap'
export default {
plugins: [
Vue(),
Sitemap(),
],
}
Now, run npm build
and this will generate sitemap.xml and robots.txt files on your dist folder.
MPA docs
from Vite documentation.vite-plugin-mpa
.string
'http://localhost/'
Base URI.
string[]
[]
Array of strings with manual dynamic routes.
const names = [
'John',
'Bryce',
'Addison',
'Dana',
]
const dynamicRoutes = names.map(name => `/names/${name}`)
export default {
plugins: [
Vue(),
Sitemap({ dynamicRoutes }),
],
}
You can find a working example in example folder.
string[]
[]
Array of strings with excluded routes.
export default {
plugins: [
Vue(),
Sitemap({ exclude: ['/admin', '/private'] }),
],
}
You can find a working example in example folder.
string[]
[]
Array of strings with other sitemaps paths or urls.
generateSitemap({
externalSitemaps: ['sitemap_1', 'sitemap_2', 'subpath/sitemap_3', 'https://site.com/sitemap.xml']
})
string
'dist'
Output directory.
string | string[]
'html'
File extensions that need to be generated. Example: ['html', 'md']
string | RoutesOptionMap<string>
'daily'
Change frequency option for sitemap.
number | RoutesOptionMap<number>
1
Priority option for sitemap.
Date | RoutesOptionMap<Date>
new Date()
Last modification option for sitemap.
{ [route: string]: Type }
Used for changing changefreq
, priority
, or lastmod
on a by-route level.
The (optional) route '*'
is used as default.
boolean
false
Converts XML into a human readable format
{ defaultLanguage?: string, languages: string[], strategy?: 'suffix' | 'prefix' }
undefined, strategy: 'suffix'
Add i18n support defining alternate links. defaultLanguage will use this language with / and languages with /language. strategy specifies if the language code is a suffix to the path or a prefix. 'suffix' is default. Example: http://localhost/mypage/en or http://localhost/en/mypage
boolean
true
Enables robots.txt file generation
RobotOption[]
[{ userAgent: '*', allow: '/' }]
RobotOption:
string
string | string[]
string | string[]
number
string
MIT License © 2022 jbaubree
FAQs
Sitemap generator plugin for Vite
We found that vite-plugin-sitemap demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.