chore: remove the base URL from the ws config (#5708)

This commit is contained in:
Vikrant Gupta 2024-08-16 17:41:19 +05:30 committed by GitHub
parent 57c45f22d6
commit 0401c27dbc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,5 +3,5 @@ export const ENVIRONMENT = {
process?.env?.FRONTEND_API_ENDPOINT ||
process?.env?.GITPOD_WORKSPACE_URL?.replace('://', '://8080-') ||
'',
wsURL: process?.env?.WEBSOCKET_API_ENDPOINT || 'ws://localhost:8080/',
wsURL: process?.env?.WEBSOCKET_API_ENDPOINT || '',
};