18 lines
349 B
Text
18 lines
349 B
Text
|
---
|
||
|
import { getCollection } from 'astro:content'
|
||
|
|
||
|
export async function getStaticPaths() {
|
||
|
const blogEntries = await getCollection('blog')
|
||
|
|
||
|
return blogEntries.map((entry) => ({
|
||
|
params: { slug: entry.slug },
|
||
|
props: { entry },
|
||
|
}))
|
||
|
}
|
||
|
|
||
|
const { entry } = Astro.props
|
||
|
const { Content } = await entry.render()
|
||
|
---
|
||
|
|
||
|
<Content />
|