Update API_URL for development to use local endpoint

This commit is contained in:
Jeppe Bundgaard
2026-02-17 12:19:14 +01:00
parent c438fe6b27
commit 84e8491ccc
+1 -1
View File
@@ -2,4 +2,4 @@ export const IS_DEV = import.meta.env.VITE_IS_DEV; // Set to false in production
// Development mode
export const POS_STEP_1_VERSION = 2; //(IS_DEV ? 2 : 1);
export const API_URL = (IS_DEV ? 'https://api.truckwash.dk:4433' : 'https://api.truckwash.dk');
export const API_URL = (IS_DEV ? 'http://localhost/api' : 'https://api.truckwash.dk');