mirror of
https://github.com/PR0M3TH3AN/Archivox.git
synced 2025-09-08 23:18:42 +00:00
8 lines
267 B
JavaScript
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>`);
|
|
}
|
|
};
|