feat: Proxy Umami analytics script and API calls through Next.js rewrites.

This commit is contained in:
2026-02-08 16:57:43 +00:00
parent 4ec9355510
commit a4ae8c5a72
3 changed files with 10 additions and 2 deletions

View File

@@ -2,6 +2,13 @@ import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
async rewrites() {
return [
{ source: "/stats/script.js", destination: "https://umami.mati.ss/script.js" },
{ source: "/stats/api/send", destination: "https://umami.mati.ss/api/send" },
{ source: "/stats/api/collect", destination: "https://umami.mati.ss/api/collect" },
];
},
};
export default nextConfig;