site-library/packages/imagetoolsOSR/plugin/hooks/config.js
2025-03-08 21:04:49 +01: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",
],
},
};
}