mirror of
https://github.com/fmhy/edit.git
synced 2026-02-19 01:31:41 +11:00
9 lines
232 B
TypeScript
9 lines
232 B
TypeScript
export default defineEventHandler(async (event) => {
|
|
return new Response("", {
|
|
status: 200,
|
|
headers: {
|
|
"Access-Control-Allow-Origin": "*",
|
|
"Access-Control-Allow-Methods": "POST,PATCH,OPTIONS",
|
|
},
|
|
});
|
|
});
|