UNPKG

@nuxthub/core

Version:

Build full-stack Nuxt applications on Cloudflare, with zero configuration.

7 lines (6 loc) 249 B
import { eventHandler, sendNoContent } from "h3"; import { requireNuxtHubAuthorization } from "../../../../utils/auth.js"; export default eventHandler(async (event) => { await requireNuxtHubAuthorization(event); return sendNoContent(event); });