mirror of
https://github.com/Spythere/station-manager-2.0.git
synced 2026-05-03 05:28:13 +00:00
9 lines
155 B
TypeScript
9 lines
155 B
TypeScript
import axios from 'axios';
|
|
|
|
const client = axios.create({
|
|
baseURL: import.meta.env['VITE_API_URL'],
|
|
withCredentials: true,
|
|
});
|
|
|
|
export default client;
|