llmoptimizer
Version:
Generate an llms.txt summary of your website/docs for LLMs (framework-agnostic with Vite/Next/Nuxt/Astro/Remix helpers).
19 lines (16 loc) • 549 B
text/typescript
import { R as RobotsOptions } from './robots-Cmz7RZLZ.cjs';
interface NuxtOptions {
mode?: 'static' | 'crawl';
staticDir?: string;
outFile?: string;
baseUrl?: string;
format?: 'markdown' | 'json';
theme?: 'default' | 'compact' | 'detailed' | 'structured';
obeyRobots?: boolean;
concurrency?: number;
robots?: boolean | (RobotsOptions & {
outFile?: string;
});
}
declare function llmoptimizerNuxt(options?: NuxtOptions): (nuxt: any) => void;
export { type NuxtOptions, llmoptimizerNuxt as default };