mirror of
https://github.com/OpenFactorioServerManager/factorio-server-manager.git
synced 2025-04-23 12:18:40 +02:00
7 lines
111 B
JavaScript
7 lines
111 B
JavaScript
|
import Axios from "axios";
|
||
|
|
||
|
const client = Axios.create({
|
||
|
withCredentials: true
|
||
|
});
|
||
|
|
||
|
export default client;
|