Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/claudiabdm/astro-storyblok-image-service

Integration of Storyblok image service with Astro image
https://github.com/claudiabdm/astro-storyblok-image-service

astro astrojs storyblok storyblok-api storyblok-astro

Last synced: 1 day ago
JSON representation

Integration of Storyblok image service with Astro image

Awesome Lists containing this project

README

        

# Astro Storyblok Image Service
Integrate [Storyblok image service](https://www.storyblok.com/docs/image-service/) with [Astro image components or getImage()](https://docs.astro.build/en/guides/images/).

## Getting Started

### Installation

```bash
npm install -D astro-storyblok-image-service
```

### Usage
To use the Storyblok image service with the Astro Image API you need to configure the `astro.config.mjs` file.

```ts
import { AstroStoryblokImageService } from 'astro-storyblok-image-service';

export default defineConfig({
...
image: {
service: 'astro-storyblok-image-service',
}
...
});

```