slidev-theme-narduin/utils/imageHelper.ts

4 lines
114 B
TypeScript
Raw Normal View History

2024-12-13 13:30:22 +00:00
export function imageSrc(src: string) {
2024-12-17 21:50:34 +00:00
return src.startsWith('http') ? `url(${src})` : `url(/images/${src})`
2024-12-13 13:30:22 +00:00
}