mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-19 16:36:45 +00:00
10 lines
336 B
JavaScript
10 lines
336 B
JavaScript
import axios from "axios";
|
|
//import { format } from 'path';
|
|
|
|
export default axios.create({
|
|
// baseURL: 'http://104.211.113.204:8080/api/v1/' //comment this line and remove this comment before pushing
|
|
// baseURL: process.env.QUERY_SERVICE_URL,
|
|
// console.log('in traces API', process.env.QUERY_SERVICE_URL)
|
|
baseURL: "/api/v1/",
|
|
});
|