Fix: Replace Image URL

替换图片
This commit is contained in:
奇趣保罗 2025-12-20 23:12:49 +08:00
parent ff6475e759
commit 240fdedec7
1 changed files with 2 additions and 1 deletions

View File

@ -71,7 +71,8 @@ const getImageUrl = (url: string) => {
if (import.meta.env.DEV) { if (import.meta.env.DEV) {
return url.replace("https://legacy.paul.ren", "/proxy-images"); return url.replace("https://legacy.paul.ren", "/proxy-images");
} }
return url;
return url.replace("https://legacy.paul.ren", "/");
}; };
const captureScreenshot = async () => { const captureScreenshot = async () => {