polymech-astro/packages/imagetools/plugin/hooks/config.js
2025-08-15 20:42:02 +02:00

20 lines
338 B
JavaScript

// @ts-check
export default function config() {
return {
optimizeDeps: {
exclude: ["@astropub/codecs", "imagetools-core", "sharp"],
},
ssr: {
external: [
"sharp",
"potrace",
"file-type",
"object-hash",
"find-cache-dir",
"@astropub/codecs",
],
},
};
}