mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-19 05:51:32 +08:00
13 lines
306 B
JavaScript
13 lines
306 B
JavaScript
import axios from 'axios';
|
|
//import { format } from 'path';
|
|
|
|
export default axios.create({
|
|
// baseURL: 'http://104.211.113.204:8080/api/v1/'
|
|
// baseURL: process.env.QUERY_SERVICE_URL,
|
|
// console.log('in traces API', process.env.QUERY_SERVICE_URL)
|
|
baseURL: 'http://localhost:3000/api/v1/',
|
|
|
|
|
|
});
|
|
|