FMHY-Website/.vitepress/routes/test.ts
2024-05-03 11:38:42 +06:00

7 lines
366 B
TypeScript

// This is a server-side event handler function that exports a default object with a "nitro" property.
// The function does not take any arguments and does not perform any asynchronous operations.
// It is likely used in a Nuxt.js application, to handle a specific event and return a response.
export default function eventHandler() {
return { nitro: 'works' }
}