feat: frontend notification manager

This commit is contained in:
2025-05-10 16:43:30 +01:00
parent 64439d9041
commit 90b863b6cf
4 changed files with 119 additions and 6 deletions

View File

@@ -20,7 +20,7 @@ type BaseRequestParams = Partial<{
method: "GET" | "POST";
}>;
export const base = "https://haystack.johncosta.tech";
export const base = "http://localhost:3040";
const getBaseRequest = ({ path, body, method }: BaseRequestParams): Request => {
return new Request(`${base}/${path}`, {