diff options
author | João Augusto Costa Branco Marado Torres <torres.dev@disroot.org> | 2025-07-04 21:14:34 -0300 |
---|---|---|
committer | João Augusto Costa Branco Marado Torres <torres.dev@disroot.org> | 2025-07-04 21:14:34 -0300 |
commit | e43b58379323144cb4067ec1329a2ccfaaa5cc5e (patch) | |
tree | 2a86ead36ad7b6c803f7f0f1018a8503b5f551e1 /src/content.config.ts | |
parent | 011c4266ccbf3ff66d92e223b2fafd291127c102 (diff) |
fix: better caching
Signed-off-by: João Augusto Costa Branco Marado Torres <torres.dev@disroot.org>
Diffstat (limited to 'src/content.config.ts')
-rw-r--r-- | src/content.config.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content.config.ts b/src/content.config.ts index 821faf5..d3504e5 100644 --- a/src/content.config.ts +++ b/src/content.config.ts @@ -5,7 +5,7 @@ import { parse } from "toml"; import { Blog, Entity } from "./lib/collection/schemas.ts"; const blog = defineCollection({ - loader: glob({ base: "./public/blog", pattern: "+([0-9a-z-]).md" }), + loader: glob({ base: "./public/blog/read", pattern: "+([0-9a-z-]).md" }), schema: Blog, }); |