mirror of
https://github.com/Dokploy/website.git
synced 2026-07-05 14:05:32 +02:00
- Enhanced API documentation with new MDX files and improved structure. - Updated OpenAPI specifications to reflect recent changes and added new components. - Refined global CSS and layout configurations for better styling and user experience. - Added various images and icons to enrich the visual aspects of the documentation. - Updated package dependencies to ensure compatibility with the latest features.
11 lines
257 B
TypeScript
11 lines
257 B
TypeScript
import { getLLMText, source } from '@/lib/source';
|
|
|
|
export const revalidate = false;
|
|
|
|
export async function GET() {
|
|
const scan = source.getPages().map(getLLMText);
|
|
const scanned = await Promise.all(scan);
|
|
|
|
return new Response(scanned.join('\n\n'));
|
|
}
|