Files
Archivox/plugins/analytics.js
2025-07-10 10:44:46 -04:00

8 lines
267 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.replace('</body>', `${snippet}</body>`);
}
};