next.js / packages /next /src /lib /is-edge-runtime.ts
AbdulElahGwaith's picture
Upload folder using huggingface_hub
b91e262 verified
import type { ServerRuntime } from '../types'
import { SERVER_RUNTIME } from './constants'
export function isEdgeRuntime(value?: string): value is ServerRuntime {
return (
value === SERVER_RUNTIME.experimentalEdge || value === SERVER_RUNTIME.edge
)
}