/
githubmirror
/
bootstrap
Обзор
Документация
Войти
/
githubmirror
/
bootstrap
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
site/src/libs/content.ts
12 строк
382 B
Julien Déramond
Docs: migration from Hugo to Astro (#41251)
15 апр 2025, 19:37
Не верифицирован
15 апр 2025, 19:37
a8ab199
Код
Авторство
О чём код?
import { getCollection, getEntryBySlug } from 'astro:content' export const docsPages = await getCollection('docs') export const callouts = await getCollection('callouts') export const aliasedDocsPages = await getCollection('docs', ({ data }) => { return data.aliases !== undefined }) export function getCalloutByName(name: string) { return getEntryBySlug('callouts', name) }