mirror of
https://github.com/algerkong/AlgerMusicPlayer.git
synced 2026-06-29 20:17:30 +08:00
9 lines
147 B
TypeScript
9 lines
147 B
TypeScript
|
|
import axios from "axios";
|
||
|
|
|
||
|
|
const request = axios.create({
|
||
|
|
baseURL: "http://123.56.226.179:3000",
|
||
|
|
timeout: 10000,
|
||
|
|
});
|
||
|
|
|
||
|
|
export default request;
|