diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts index 0b9a91a3..4ab6e7c9 100644 --- a/docs/.vitepress/config.ts +++ b/docs/.vitepress/config.ts @@ -4,7 +4,6 @@ import { transformerTwoslash } from '@shikijs/vitepress-twoslash' import { createFileSystemTypesCache } from '@shikijs/vitepress-twoslash/cache-fs' import tailwindcss from '@tailwindcss/vite' - import llmstxt from 'vitepress-plugin-llms' import { analyzer } from 'vite-bundle-analyzer' @@ -60,7 +59,12 @@ export default defineConfig({ }, plugins: [ tailwindcss() as any, - process.env.NODE_ENV === 'production' ? llmstxt() : [], + process.env.NODE_ENV === 'production' ? llmstxt({ + description: 'Ergonomic Framework for Humans', + details: + "Elysia is an ergonomic framework for Humans. With end-to-end type safety and great developer experience. Elysia is familiar, fast, and first class TypeScript support with well-thought integration between services whether it's tRPC, Swagger or WebSocket.", + ignoreFiles: ['index.md', 'table-of-content.md'] + }) : [], process.env.ANALYZE === 'true' ? analyzer() : [], // GitChangelog({ // repoURL: () => 'https://github.com/elysiajs/documentation',