Files
seedPass/docs/plugins/analytics.js
thePR0M3TH3AN 40d16101e0 update
2025-07-10 19:37:30 -04:00

8 lines
277 B
JavaScript

module.exports = {
onPageRendered: async ({ html, file }) => {
// Example: inject analytics script into each page
const snippet = '\n<script>console.log("Page viewed: ' + file + '")</script>';
return { html: html.replace('</body>', `${snippet}</body>`) };
}
};