blob: 5b6efb93ba92f7897a9446c3624098cf004c139b (
plain)
1
2
3
4
5
6
|
import { imageEndpoint } from '../config';
export default function(image, width = 300, height = 300) {
if (!image || !image.secret) return '';
return `${imageEndpoint}/${image.secret}/${width}x${height}`;
}
|