Skip to content

Commit 35ce84b

Browse files
committed
fix(docs): update URL rewrites in VitePress configuration
- Modified the rewrites in the VitePress configuration to use regex patterns for better routing of llms files. - This change enhances the flexibility of static file access and improves the overall documentation build process.
1 parent 70b5d84 commit 35ce84b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/.vitepress/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ export default async () => {
3232
},
3333

3434
rewrites: {
35-
'/llms.txt': '/public/llms.txt',
36-
'/llms-full.txt': '/public/llms-full.txt'
35+
'^/tokenly/llms.txt': '/llms.txt',
36+
'^/tokenly/llms-full.txt': '/llms-full.txt'
3737
},
3838

3939
head: [

0 commit comments

Comments
 (0)