File size: 280 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { NextResponse } from 'next/server'

export const revalidate = false

export async function GET() {
  console.log('Load data')
  return NextResponse.json({
    now: Date.now(),
    content: Array.from(new Array(3 * 1024 * 1024))
      .map(() => 1)
      .join(''),
  })
}