Integrate Storyblok image service with Astro image components or getImage().
npm install -D astro-storyblok-image-service
To use the Storyblok image service with the Astro Image API you need to configure the astro.config.mjs
file.
import { AstroStoryblokImageService } from 'astro-storyblok-image-service';
export default defineConfig({
...
image: {
service: 'astro-storyblok-image-service',
}
...
});