281 B
281 B
//拼接接口路径
const getEnvUrl = (path: string) => {
const API_BASE_URL = import.meta.env.VITE_API_BASE_URL;
return ${API_BASE_URL}${path};
};
用例:
const url = getEnvUrl('/admin/moduleCenter/modules');