slidev-theme-narduin/utils/imageHelper.ts

4 lines
114 B
TypeScript
Raw Permalink Normal View History

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