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-ssg-sitemap
Advanced tools
sitemap generator working with vite-ssg
Install:
npm install -D vite-ssg
npm install -D vite-ssg-sitemap
npm install vue-router@next
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 })
},
},
}
You can find a working example in example folder.
string
'dist'
Output directory.
string
'daily'
Change frequency option for sitemap.
number
1
Priority option for sitemap.
Date
new Date()
Last modification option for sitemap.
boolean
false
Converts XML into a human readable format
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 3,793 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
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.