import fs from 'node:fs/promises'; import { loremIpsumMd } from './_util.js'; /** * @param {URL} projectDir */ export async function run(projectDir) { await fs.rm(projectDir, { recursive: true, force: true }); await fs.mkdir(new URL('./src/pages/blog', projectDir), { recursive: true }); await fs.mkdir(new URL('./src/content/blog', projectDir), { recursive: true }); await fs.copyFile( new URL('./image.jpg', import.meta.url), new URL('./src/image.jpg', projectDir), ); const promises = []; for (let i = 0; i < 10000; i++) { const content = `\ # Article ${i} ${loremIpsumMd} ![image ${i}](../../image.jpg) `; promises.push( fs.writeFile(new URL(`./src/content/blog/article-${i}.mdx`, projectDir), content, 'utf-8'), ); } await fs.writeFile( new URL(`./src/pages/blog/[...slug].astro`, projectDir), `\ --- 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(); ---