Revelav3/src/utils/events.ts
MotorTruck1221 620ad25c61
Server: switch to Fastify
Switch config to TOML over JSON (it's just nicer TBH)
2024-10-13 04:33:25 -06:00

10 lines
232 B
TypeScript

function pageLoad(fn: () => void) {
document.addEventListener("astro:page-load", () => {
try {
fn();
}
catch (err) { /* DEBUGGING ONLY: console.error(err) */ }
});
}
export { pageLoad };