-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Description
Context7: https://context7.com/websites/astro_build_en
Reason: Missing or incorrect documentation.
Description:
For query "Astro live content collections setup steps: astro.config experimental flags, src/content.config.ts defineLiveCollection usage, and getLiveEntry return shape with error handling in .astro page. Include official snippets."
it incorrectly returns:
Enable Live Content Collections in Astro Config
Source: https://docs.astro.build/en/reference/experimental-flags/live-content-collectionsThis configuration snippet shows how to enable the experimental live content collections feature by setting the experimental.liveContentCollections flag to true in your astro.config.mjs file. Ensure an adapter for on-demand rendering is configured.
export default defineConfig({ experimental: { liveContentCollections: true, }, });
even though that's no longer valid config option in Astro v6.
Issues:
- Missing README
- Outdated API documentation
- Broken links
- Incomplete examples
- Other