You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
450 B
11 lines
450 B
/** 与 `upload` 返回及静态路径一致,无前导 host */
|
|
export const POST_MEDIA_PUBLIC_PREFIX = "/public/assets/";
|
|
|
|
/** 从未引用:created_at 起算;曾引用:dereferenced_at 起算 */
|
|
export const MEDIA_ORPHAN_GRACE_HOURS_NEVER_REF = 24;
|
|
export const MEDIA_ORPHAN_GRACE_HOURS_AFTER_DEREF = 24;
|
|
|
|
export const MEDIA_IMAGE_MAX_WIDTH_PX = 1920;
|
|
export const MEDIA_WEBP_QUALITY = 82;
|
|
|
|
export const RELATIVE_ASSETS_DIR = "public/assets";
|
|
|