71332cf969
* fix: move service functions from astro/assets to astro/config so people can import it * chore: changeset
15 lines
302 B
JavaScript
15 lines
302 B
JavaScript
export { defineConfig, getViteConfig } from './dist/config/index.js';
|
|
|
|
export function sharpImageService() {
|
|
return {
|
|
entrypoint: 'astro/assets/services/sharp',
|
|
config: {},
|
|
};
|
|
}
|
|
|
|
export function squooshImageService() {
|
|
return {
|
|
entrypoint: 'astro/assets/services/squoosh',
|
|
config: {},
|
|
};
|
|
}
|