Merge pull request #1410 from homarr-labs/feat/wordmark

This commit is contained in:
Thomas Camlong
2025-09-05 07:20:06 +02:00
committed by GitHub
5 changed files with 425 additions and 120 deletions

View File

@@ -7,14 +7,6 @@ export const dynamicParams = false
export async function generateStaticParams() {
const iconsData = await getAllIcons()
if (process.env.CI_MODE === "false") {
// This is meant to speed up the build process in local development
return Object.keys(iconsData)
.slice(0, 5)
.map((icon) => ({
icon,
}))
}
return Object.keys(iconsData).map((icon) => ({
icon,
}))