import { strictCORS } from "https://deno.land/x/workers_middleware@v0.1.0-pre.36/index.ts";
A CORS middleware that only grants the permissions defined via options
.
Note that applying this middleware to your routes isn't enough for non-GET requests. Pre-flight/OPTIONS routes need to be added manually:
router.options('/your/path', strictCORS({ ... }), () => noContent())
router.post('/your/path', strictCORS({ ... }), (req, {}) => ok())
type
(options: StrictCORSOptions) => unknown