field noteENTRY / 002

Personal Field Archive / Received 2026.08.15

用 Astro 开始写作

为什么选择一个内容优先、默认快速的技术栈来搭建个人博客。

这是博客的第一篇文章。你可以在 src/content/posts 中添加 Markdown 或 MDX 文件,页面会自动生成。

内容优先

Astro 默认输出极少的客户端 JavaScript,很适合以阅读体验为核心的个人网站。Content Collections 则为文章的 frontmatter 提供类型安全和数据校验。

const posts = await getCollection('posts');

接下来,只需要把注意力放在持续写作上。