Pattern: Use of deprecated Astro.fetchContent()
Issue: -
Disallow using deprecated Astro.fetchContent()
.
Example of incorrect code:
let allPosts = Astro.fetchContent('./posts/*.md');
Example of correct code:
let allPosts = await Astro.glob('./posts/*.md');