hack: setting prod url to build macos app

This commit is contained in:
2025-05-08 18:04:47 +01:00
parent ac92f80dc6
commit c0f6af7a05

View File

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