server-dash/app/api/stats/route.ts

7 lines
208 B
TypeScript

import { NextResponse } from 'next/server';
export async function GET() {
const res = await fetch('http://localhost:3001/stats');
const data = await res.json();
return NextResponse.json(data);
}