// Exaxmples of usage:
//* 1. In a background image:
...
//* 2. In img tag:
})
const toAbsoluteUrl = (pathname: string): string => {
const baseUrl = import.meta.env.BASE_URL;
if (baseUrl && baseUrl !== '/') {
return import.meta.env.BASE_URL + pathname;
} else {
return pathname;
}
};
export { toAbsoluteUrl };