import { joinURL } from 'ufo'; import type { ProviderGetImage } from '@nuxt/image'; import { createOperationsGenerator } from '#image'; const operationsGenerator = createOperationsGenerator(); export const getImage: ProviderGetImage = ( src, { modifiers = {}, baseUrl } = {}, ) => { baseUrl ??= ''; const operations = operationsGenerator(modifiers); return { url: joinURL(baseUrl, src + (operations ? '?' + operations : '')), }; };