Update debug backend url

This commit is contained in:
Keannu Bernasol 2024-01-07 12:12:05 +08:00
parent c1c092080c
commit a685e3fcb5

View file

@ -23,11 +23,11 @@ import {
TransactionCreateType, TransactionCreateType,
} from "../Types/Types"; } from "../Types/Types";
const debug = false; const debug = true;
let backendURL; let backendURL;
if (debug) { if (debug) {
backendURL = "http://localhost:8000/"; backendURL = "http://localhost:8092/";
} else { } else {
backendURL = "https://csm-backend.keannu1.duckdns.org/"; backendURL = "https://csm-backend.keannu1.duckdns.org/";
} }