File size: 123 Bytes
1e92f2d |
1 2 3 4 5 |
export const config = { runtime: 'edge' }
export default function (req) {
return new Response('Hello from ' + req.url)
}
|
1e92f2d |
1 2 3 4 5 |
export const config = { runtime: 'edge' }
export default function (req) {
return new Response('Hello from ' + req.url)
}
|