Rename
Some checks failed
Test / test (push) Failing after 7s
Deploy to Pages / deploy (push) Successful in 8s
Build and Publish Docker Image / build-and-push (push) Successful in 15s

This commit is contained in:
Andras Schmelczer 2026-06-06 21:12:20 +01:00
parent 62795b55a0
commit d65b7b6260
6 changed files with 7 additions and 7 deletions

View file

@ -39,9 +39,9 @@ app.use(express.static("public"));
// Serve the official Plausible tracker (npm: @plausible-analytics/tracker) from node_modules.
const plausibleTrackerPath =
require.resolve("@plausible-analytics/tracker/plausible.js");
require.resolve("@plausible-analytics/tracker/vendored.js");
app.get("/vendor/plausible.js", (req, res) => {
app.get("/vendor/vendored.js", (req, res) => {
res.sendFile(plausibleTrackerPath);
});