mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 15:54:39 +00:00
5 lines
150 B
TypeScript
5 lines
150 B
TypeScript
"use client";
|
|
|
|
export default function imageLoader({ src, width, quality }) {
|
|
return `https://wsrv.nl/?url=${src}&w=${width}&q=${quality || 75}`;
|
|
}
|