Files
JKVideo/utils/imageUrl.ts

14 lines
455 B
TypeScript
Raw Normal View History

import { Platform } from 'react-native';
/**
* Web B站图片 CDN URL Referer
* Native URLApp axios
*/
export function proxyImageUrl(url: string): string {
if (Platform.OS !== 'web' || !url) return url;
return url.replace(
/^https?:\/\/([a-z0-9]+\.hdslb\.com)/,
'http://localhost:3001/bilibili-img/$1',
);
}