mirror of
https://github.com/AustinKelsay/plebdevs.git
synced 2025-05-16 03:05:51 +00:00
12 lines
277 B
JavaScript
12 lines
277 B
JavaScript
![]() |
import React from "react"
|
||
|
|
||
|
export const useImageProxy = () => {
|
||
|
|
||
|
const returnImageProxy = (image) => {
|
||
|
const proxyUrl = `${process.env.NEXT_PUBLIC_PROXY_URL}?imageUrl=${encodeURIComponent(image)}`;
|
||
|
|
||
|
return proxyUrl;
|
||
|
}
|
||
|
|
||
|
return { returnImageProxy };
|
||
|
}
|