mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-10 01:16:32 +08:00
10 lines
149 B
JavaScript
10 lines
149 B
JavaScript
import axios from 'axios';
|
|
|
|
// No auth for the API
|
|
export default axios.create({
|
|
baseURL: 'https://api.signoz.io/api/prom/api/v1',
|
|
}
|
|
);
|
|
|
|
|