File size: 483 Bytes
95b5a04 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | export let ImagePath;
(function (ImagePath) {
ImagePath['TESTAMENTS'] = 'testaments';
ImagePath['USERS'] = 'users';
ImagePath['ECOMMERCE'] = 'e-commerce';
ImagePath['PROFILE'] = 'profile';
ImagePath['BLOG'] = 'blog';
})(ImagePath || (ImagePath = {}));
// ==============================|| NEW URL - GET IMAGE URL ||============================== //
export function getImageUrl(name, path) {
return new URL(`/src/assets/images/${path}/${name}`, import.meta.url).href;
}
|