fix analytics plugin output

This commit is contained in:
thePR0M3TH3AN
2025-07-10 11:53:07 -04:00
parent 26e66bf7f4
commit 22276ef5b2

View File

@@ -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>`) };
}
};