mirror of
https://github.com/withastro/astro.git
synced 2025-01-06 22:10:10 -05:00
cfa6a47ac7
* feat: remove the squoosh image service * fix: build * chore: changeset
16 lines
359 B
JavaScript
16 lines
359 B
JavaScript
export { defineConfig, getViteConfig } from './dist/config/index.js';
|
|
export { envField } from './dist/env/config.js';
|
|
|
|
export function sharpImageService(config = {}) {
|
|
return {
|
|
entrypoint: 'astro/assets/services/sharp',
|
|
config,
|
|
};
|
|
}
|
|
|
|
export function passthroughImageService() {
|
|
return {
|
|
entrypoint: 'astro/assets/services/noop',
|
|
config: {},
|
|
};
|
|
}
|