Skip to content

在 Starlight 项目中使用 Astro 构建页面

创建页面

在项目的 src/pages 目录中创建一个新的 Astro 页面文件。例如,创建一个 build-with-astro.astro 文件:

---
const title = "Welcome to Starlight with Astro";
---
<h1>{title}</h1>
<p>This is a simple page built with Astro in a Starlight project.</p>

使用 Astro 构建页面