feat(logs): add Database logs and Build logs to the Server Logs dashboard page

This commit is contained in:
2026-06-14 14:58:02 -07:00
parent f8cc4b32b0
commit e0354d969e
3 changed files with 250 additions and 19 deletions

View File

@@ -162,7 +162,7 @@ export interface CoolifyDeployment {
commit?: string;
}
async function coolifyFetch(path: string, options: RequestInit = {}) {
export async function coolifyFetch(path: string, options: RequestInit = {}) {
const url = `${COOLIFY_URL}/api/v1${path}`;
const res = await fetch(url, {
...options,