Merge pull request #13 from PR0M3TH3AN/codex/update-analytics.js-to-inject-snippet

Fix analytics plugin return format
This commit is contained in:
thePR0M3TH3AN
2025-07-10 11:53:55 -04:00
committed by GitHub

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