Files
psp_panel/src/environments/environment.prod.ts
T

15 lines
328 B
TypeScript
Raw Normal View History

2025-12-04 21:07:18 +03:30
// Production environment configuration
export const environment = {
production: true,
apiBaseUrl: 'https://api.yourdomain.com',
host: 'yourdomain.com',
port: 443,
apiEndpoints: {
auth: '/api/auth',
users: '/api/users',
// Add more endpoints as needed
},
enableLogging: false,
enableDebug: false,
};