| 1 | export const config = { |
| 2 | imageCDN: 'https://yika-bj.oss-cn-beijing.aliyuncs.com/', |
| 3 | apiBaseURL: 'https://ttgufwxxqyow.sealosbja.site/api', |
| 4 | }; |
| 5 | |
| 6 | // 处理图片地址 |
| 7 | export const getImageUrl = (path: string) => { |
| 8 | if (!path) return ''; |
| 9 | if (path.startsWith('http')) return path; |
| 10 | return `${config.imageCDN}${path}`; |
| 11 | }; |
| 12 |