@יעקב-יצחק זה הקוד המלא יותר
export const Route = createFileRoute("/event")({
server: {
handlers: {
GET: async () => {
return new Response("id_list_message=t-אירוע לא נמצא", {
status: 200,
headers: {
"Content-Type": "text/plain; charset=utf-8",
...CORS_HEADERS,
},
});
},
OPTIONS: async () => {
return new Response(null, {
status: 204,
headers: CORS_HEADERS,
});
},
},
},
});