This repository has been archived on 2025-12-24. You can view files and clone it, but cannot push or open issues or pull requests.
site-template/packages/imagetools/plugin/hooks/config.js
2025-03-07 14:59:06 +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",
],
},
};
}