Security News
RubyGems.org Adds New Maintainer Role
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.
vite-ssg-sitemap
Advanced tools
Sitemap generator working with vite-ssg using sitemap-ts
Install:
npm install -D vite-ssg
npm install -D vite-ssg-sitemap
Add to your vite.config.js
:
import generateSitemap from 'vite-ssg-sitemap'
export default {
plugins: [
Vue(),
],
ssgOptions: {
onFinished() { generateSitemap() },
},
}
Now, run npm build
and this will generate sitemap.xml and robots.txt files on your dist folder.
string
'http://localhost/'
Base URI.
string[]
[]
Array of strings with manual dynamic routes.
export default {
plugins: [
Vue(),
],
ssgOptions: {
onFinished() {
const users = await api.get('/users')
const dynamicRoutes = users.map(user => `/users/${user.name}`)
generateSitemap({ dynamicRoutes })
},
},
}
string[]
[]
Array of strings with excluded routes.
export default {
plugins: [
Vue(),
],
ssgOptions: {
onFinished() {
generateSitemap({
exclude: ['/admin', '/private']
})
},
},
}
You can find a working example in example folder.
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
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 working with vite-ssg
The npm package vite-ssg-sitemap receives a total of 2,778 weekly downloads. As such, vite-ssg-sitemap popularity was classified as popular.
We found that vite-ssg-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
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.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.