1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-22 14:16:50 +01:00
elk/server/api/pageview.ts

8 lines
121 B
TypeScript
Raw Normal View History

2022-11-13 05:34:43 +00:00
const startAt = Date.now()
let count = 0
export default defineEventHandler(() => ({
pageview: count++,
startAt,
}))