File size: 338 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import edgeLightPackage from 'my-edge-light-package'
import edgeLightPackageExports from 'my-edge-light-package-exports'
import { NextResponse } from 'next/server'

export const config = { runtime: 'edge' }

export default function MyEdgeFunction() {
  return NextResponse.json({
    edgeLightPackage,
    edgeLightPackageExports,
  })
}