mirror of
https://github.com/Spythere/pojazdownik.git
synced 2026-05-02 21:08:12 +00:00
11 lines
227 B
TypeScript
11 lines
227 B
TypeScript
import axios from 'axios';
|
|
|
|
const http = axios.create({
|
|
baseURL:
|
|
import.meta.env.VITE_API_DEV === '1' && import.meta.env.DEV
|
|
? 'http://localhost:5500'
|
|
: 'https://static.spythere.eu',
|
|
});
|
|
|
|
export default http;
|