UNPKG

@crumbjs/core

Version:

<img src="https://raw.githubusercontent.com/tuplescompany/crumbjs/refs/heads/main/logo/crumbjs.png" alt="CrumbJS Logo" width="200"/> - The tasty way to build fast apis.

11 lines (10 loc) 387 B
export const defaultNotFoundHandler = () => new Response(null, { headers: { 'Content-Type': 'text/plain' }, status: 404, }); export const defaultErrorHandler = ({ setStatus, exception }) => { setStatus(exception.status); return exception.toObject(); }; export const modes = ['development', 'production', 'qa', 'staging']; export const openapiUis = ['swagger', 'scalar'];