/ src / routes / demo / api.names.ts
api.names.ts
 1  import { createFileRoute } from '@tanstack/react-router'
 2  import { json } from '@tanstack/react-start'
 3  
 4  export const Route = createFileRoute('/demo/api/names')({
 5    server: {
 6      handlers: {
 7        GET: () => json(['Alice', 'Bob', 'Charlie']),
 8      },
 9    },
10  })