mirror of
https://git.mirrors.martin98.com/https://github.com/sub-store-org/Sub-Store.git
synced 2025-11-08 11:41:05 +08:00
11 lines
239 B
JavaScript
11 lines
239 B
JavaScript
import Axios from 'axios';
|
|
import {BACKEND_BASE} from "@/config";
|
|
|
|
export const axios = Axios.create({
|
|
baseURL: `${BACKEND_BASE}/api`,
|
|
timeout: 1000
|
|
});
|
|
|
|
export function isEmptyObj(obj) {
|
|
return Object.keys(obj).length === 0;
|
|
} |