mirror of
https://github.com/OpenFactorioServerManager/factorio-server-manager.git
synced 2025-04-25 12:24:42 +02:00
10 lines
176 B
JavaScript
10 lines
176 B
JavaScript
import Axios from "axios";
|
|
|
|
const client = Axios.create({
|
|
withCredentials: true,
|
|
headers: {
|
|
'Content-Type': 'application/json'
|
|
}
|
|
});
|
|
|
|
export default client; |