Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/claudiabdm/astro-storyblok-image-service
- Owner: claudiabdm
- License: mit
- Created: 2024-04-12T14:35:21.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-04-12T15:21:16.000Z (10 months ago)
- Last Synced: 2024-12-18T02:24:47.437Z (about 2 months ago)
- Topics: astro, astrojs, storyblok, storyblok-api, storyblok-astro
- Language: HTML
- Homepage:
- Size: 99.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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',
}
...
});```