mirror of
https://github.com/PR0M3TH3AN/Archivox.git
synced 2025-09-07 06:38:41 +00:00
fix analytics plugin output
This commit is contained in:
@@ -2,6 +2,6 @@ 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>`);
|
||||
return { html: html.replace('</body>', `${snippet}</body>`) };
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user