Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 432 Bytes

poor-apes-cheat.md

File metadata and controls

21 lines (18 loc) · 432 Bytes
astro
minor

Adds an option for the Sharp image service to allow large images to be processed. Set limitInputPixels: false to bypass the default image size limit:

// astro.config.mjs
import { defineConfig } from 'astro/config';

export default defineConfig({
  image: {
    service: {
      entrypoint: 'astro/assets/services/sharp',
      config: {
        limitInputPixels: false,
      },
    },
  },
});