File size: 197 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
import { fetcher } from '../../src/fetcher'
export const config = { runtime: 'edge' }
export default async function UnknownDomainEndpoint() {
await fetcher('http://an.unknown.domain.nextjs')
}
|