Files
cunkebao_v3/SuperAdmin/lib/config.ts

12 lines
253 B
TypeScript
Raw Normal View History

/**
*
* @returns
*/
export function getConfig() {
// 优先获取环境变量中配置的API地址
const apiBaseUrl = process.env.NEXT_PUBLIC_API_BASE_URL || 'http://yishi.com';
return {
apiBaseUrl
};
}