feat: update PrestashopService to use dynamic base URL from environment configuration

This commit is contained in:
Vincent Guillet
2025-11-22 21:48:44 +01:00
parent 3c700348df
commit 20573d73b3
3 changed files with 6 additions and 3 deletions

View File

@@ -1,4 +1,5 @@
export const environment = {
production: true,
apiUrl: 'https://dev.unifihomenetwork.com/gameovergne-api/api'
apiUrl: 'https://dev.unifihomenetwork.com/gameovergne-api/api',
psUrl: 'https://dev.unifihomenetwork.com/gameovergne-api/api/ps'
};

View File

@@ -1,4 +1,5 @@
export const environment = {
production: false,
apiUrl: 'http://localhost:3000/api'
apiUrl: 'http://localhost:3000/api',
psUrl: '/ps'
};