TOPVERSE_Official/.output/server/chunks/pageview.mjs

12 lines
237 B
JavaScript
Raw Normal View History

2023-05-30 00:33:57 +08:00
import { defineEventHandler } from 'h3';
const startAt = Date.now();
let count = 0;
const pageview = defineEventHandler(() => ({
pageview: count++,
startAt
}));
export { pageview as default };
//# sourceMappingURL=pageview.mjs.map