Writing .astro Files

A short, concise rule making Cursor trip up a little less often when writing .astro files

@martinklepsch

---
description: guidance on how to write .astro files
globs: src/**/*.astro
---

.astro files contain two parts, a JS implementation and a DOM description, these are separated by frontmatter fences. An example

---
import { Button } from "@/src/components/ui/button"
---
<Button>test</Button>

Make sure you do not omit the triple dash!

Add this context to your project via the ctxs command line integration: