blob: e2728d73f4fb111bda4540f4ee53e21ac10b63c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import { url as instanceUrl } from '@client/config';
import * as url from '../../prelude/url';
export function getStaticImageUrl(baseUrl: string): string {
const u = new URL(baseUrl);
const dummy = `${u.host}${u.pathname}`; // 拡張子がないとキャッシュしてくれないCDNがあるので
return `${instanceUrl}/proxy/${dummy}?${url.query({
url: u.href,
static: '1'
})}`;
}
|