9 lines
277 B
TypeScript
9 lines
277 B
TypeScript
import { tutorialsSource } from '@/lib/source';
|
|
import { createLLMsRoute } from '@/lib/llms-route';
|
|
|
|
const route = createLLMsRoute(tutorialsSource);
|
|
|
|
export const revalidate = false;
|
|
export const GET = route.GET;
|
|
export const generateStaticParams = route.generateStaticParams;
|