mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-20 00:46:46 +00:00
16 lines
384 B
JavaScript
16 lines
384 B
JavaScript
import axios from 'axios';
|
|
|
|
export default axios.create({
|
|
|
|
// baseURL: 'http://104.211.113.204:8080/api/v1/',
|
|
|
|
// baseURL: 'http://localhost:3000/api/v1/',
|
|
|
|
|
|
// baseURL: 'http://104.211.113.204:8080/api/v1/',
|
|
// baseURL: process.env.REACT_APP_QUERY_SERVICE_URL,
|
|
baseURL: 'api/v1/',
|
|
// console.log('in metrics API', process.env.QUERY_SERVICE_URL)
|
|
|
|
}
|
|
); |