astro-ghostcms/.pnpm-store/v3/files/9e/e8fee64fb53b81b9aaf4cc6ddc3...

23 lines
428 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
export { defineConfig, getViteConfig } from './dist/config/index.js';
export function sharpImageService(config = {}) {
return {
entrypoint: 'astro/assets/services/sharp',
config,
};
}
export function squooshImageService() {
return {
entrypoint: 'astro/assets/services/squoosh',
config: {},
};
}
export function passthroughImageService() {
return {
entrypoint: 'astro/assets/services/noop',
config: {},
};
}