From 77ec529f193eb088e05806d5e0fa2735eec831d9 Mon Sep 17 00:00:00 2001 From: Gustavo Maronato <gustavomaronato@gmail.com> Date: Tue, 10 Nov 2020 05:11:01 -0300 Subject: [PATCH] Fix #401 (#402) --- tracker/compile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tracker/compile.js b/tracker/compile.js index 1e95edf4..268667d6 100644 --- a/tracker/compile.js +++ b/tracker/compile.js @@ -18,6 +18,6 @@ function compilefile(input, output, templateVars = {}) { compilefile(relPath('src/plausible.js'), relPath('../priv/tracker/js/plausible.js')) compilefile(relPath('src/plausible.js'), relPath('../priv/tracker/js/plausible.hash.js'), {hashMode: true}) compilefile(relPath('src/plausible.js'), relPath('../priv/tracker/js/plausible.outbound-links.js'), {outboundLinks: true}) -compilefile(relPath('src/plausible.js'), relPath('../priv/tracker/js/plausible.hash.outbound-links.js'), {hash: true, outboundLinks: true}) +compilefile(relPath('src/plausible.js'), relPath('../priv/tracker/js/plausible.hash.outbound-links.js'), {hashMode: true, outboundLinks: true}) compilefile(relPath('src/p.js'), relPath('../priv/tracker/js/p.js')) fs.copyFileSync(relPath('../priv/tracker/js/plausible.js'), relPath('../priv/tracker/js/analytics.js')) -- GitLab