emis-app/common/getCdnUrl.js

7 lines
127 B
JavaScript
Raw Normal View History

2023-11-30 23:16:07 +00:00
export default (path)=> {
return `/static/images/${path}`
2024-06-14 15:43:50 +00:00
}
export const getCdnRoot = (path)=> {
return `/static/${path}`
2023-11-30 23:16:07 +00:00
}