llmoptimizer
Version:
Generate an llms.txt summary of your website/docs for LLMs (framework-agnostic with Vite/Next/Nuxt/Astro/Remix helpers).
24 lines (21 loc) • 682 B
text/typescript
import { R as RobotsOptions } from './robots-Cmz7RZLZ.cjs';
interface NextHelperOptions {
projectRoot?: string;
baseUrl?: string;
outFile?: string;
format?: 'markdown' | 'json';
mode?: 'static' | 'adapter' | 'crawl';
staticDir?: string;
include?: string[];
exclude?: string[];
theme?: 'default' | 'compact' | 'detailed' | 'structured';
concurrency?: number;
obeyRobots?: boolean;
requestDelayMs?: number;
robots?: boolean | (RobotsOptions & {
outFile?: string;
});
log?: boolean;
}
declare function runAfterNextBuild(opts?: NextHelperOptions): Promise<any>;
export { type NextHelperOptions, runAfterNextBuild };