UNPKG

@nuxthub/core

Version:

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

12 lines (11 loc) 255 B
import { handleCors, eventHandler } from "h3"; export default eventHandler((event) => { handleCors(event, { methods: "*", origin: [ "https://admin.hub.nuxt.com", "https://hub.nuxt.dev", /http:\/\/localhost:\d+/ ] }); });