feat: sitemap auto-generation for docs (#1822)

This commit is contained in:
Shubham Palriwala
2025-06-11 09:39:45 +05:30
committed by GitHub
parent d27f0ee0ef
commit cad04f26e7
4 changed files with 56 additions and 1 deletions

View File

@ -7,7 +7,8 @@
"build": "next build",
"start": "next start -p 3002",
"lint:fix": "next lint --fix",
"clean": "rimraf .next && rimraf node_modules"
"clean": "rimraf .next && rimraf node_modules",
"postbuild": "next-sitemap"
},
"dependencies": {
"@documenso/assets": "*",
@ -26,6 +27,7 @@
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"next-sitemap": "^4.2.3",
"typescript": "5.6.2"
}
}