feat: public status page

This commit is contained in:
2026-08-24 14:53:42 +00:00
parent 3abbdc41d6
commit f4f41e400b
7 changed files with 446 additions and 0 deletions
+6
View File
@@ -48,6 +48,12 @@ const nextConfig: NextConfig = {
source: "/update.ps1",
destination: `${apiUrl}/update.ps1`,
},
{
// The public status page refreshes itself in the browser, so
// the public prefix has to be proxied the same way /api is.
source: "/public/:path*",
destination: `${apiUrl}/public/:path*`,
},
];
},
};