Compare commits

..

1 Commits

Author SHA1 Message Date
aniket
06601a94d6 fix(summary): removed offset from second query 2025-03-05 14:50:03 +05:30
3 changed files with 6 additions and 2 deletions

View File

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

View File

@@ -21,7 +21,7 @@ func NewConfigFactory() factory.ConfigFactory {
func newConfig() factory.Config {
return &Config{
Enabled: false,
Enabled: true,
Prefix: "/",
Directory: "/etc/signoz/web",
}