UNPKG

serverless-offline

Version:

Emulate AWS λ and API Gateway locally when developing your Serverless project

17 lines (12 loc) 291 B
import { log } from "../../../../utils/log.js" export default function catchAllRoute() { return { handler(request, h) { const { url } = request log.debug(`got GET to ${url}`) return h.response(null).code(426) }, method: "GET", path: "/{path*}", } }