fix: more swift stuff

This commit is contained in:
2025-10-05 20:34:23 +01:00
parent 72de7c7648
commit a776c88cab
7 changed files with 4 additions and 273 deletions

View File

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