mirror of
https://github.com/Dokploy/website.git
synced 2026-07-04 13:35:24 +02:00
- Standardized import statements across various components to use double quotes for consistency. - Updated component files to ensure proper formatting and adherence to coding standards. - Enhanced overall code readability by aligning code structure and improving comment clarity. - Made minor adjustments to ensure all components follow the same coding conventions, improving maintainability.
11 lines
254 B
TypeScript
11 lines
254 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"));
|
|
}
|