From ad919776ca6fa72c49ca884c10de4c9868ca9e42 Mon Sep 17 00:00:00 2001 From: Sarah Rainsberger Date: Mon, 19 Aug 2024 12:27:12 -0300 Subject: [PATCH] [docs] `pattern` to preserve ignoring files prefixed with an underscore (#11749) * [docs] `pattern` to preserve ignoring files prefixed with an underscore * simplify examples with only md not mdx Co-authored-by: Matt Kane * remove strange line full of tabs * Update packages/astro/src/@types/astro.ts * Apply suggestions from code review * fix regex --------- Co-authored-by: Matt Kane Co-authored-by: Emanuele Stoppa --- packages/astro/src/@types/astro.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index a10ad51262..439c5073ac 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -2275,6 +2275,10 @@ export interface AstroUserConfig { * export const collections = { blog, dogs }; * ``` * + * :::note + * Loaders will not automatically [exclude files prefaced with an `_`](/en/guides/routing/#excluding-pages). Use a regular expression such as `pattern: '**\/[^_]*.md` in your loader to ignore these files. + * ::: + * * #### Querying and rendering with the Content Layer API * * The collection can be [queried in the same way as content collections](/en/guides/content-collections/#querying-collections): @@ -2356,7 +2360,7 @@ export interface AstroUserConfig { * const blog = defineCollection({ * // For content layer you no longer define a `type` * type: 'content', - * loader: glob({ pattern: "**\/*.md", base: "./src/data/blog" }), + * loader: glob({ pattern: '**\/[^_]*.md', base: "./src/data/blog" }), * schema: z.object({ * title: z.string(), * description: z.string(),