diff --git a/packages/integrations/image/src/lib/get-image.ts b/packages/integrations/image/src/lib/get-image.ts index 223e9e1bdf54..e2fabda550ff 100644 --- a/packages/integrations/image/src/lib/get-image.ts +++ b/packages/integrations/image/src/lib/get-image.ts @@ -108,7 +108,9 @@ export async function getImage( if (!loader) { // @ts-ignore const { default: mod } = await import('virtual:image-loader').catch(() => { - throw new Error('[@astrojs/image] Builtin image loader not found. (Did you remember to add the integration to your Astro config?)'); + throw new Error( + '[@astrojs/image] Builtin image loader not found. (Did you remember to add the integration to your Astro config?)' + ); }); loader = mod as ImageService; globalThis.astroImage = globalThis.astroImage || {};