mirror of
https://github.com/fmhy/edit.git
synced 2026-02-19 09:41:17 +11:00
9 lines
120 B
TypeScript
9 lines
120 B
TypeScript
import cors from 'nitro-cors'
|
|
|
|
const corsHandler = cors({
|
|
origin: '*',
|
|
methods: '*'
|
|
})
|
|
|
|
export default corsHandler
|
|
|