site-library/packages/imagetools/plugin/hooks/config.js
2025-03-12 18:53:16 +01:00

20 lines
357 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",
],
},
};
}